Woohoo.Emulation.TestData.CpuSM83 0.1.0

dotnet add package Woohoo.Emulation.TestData.CpuSM83 --version 0.1.0
                    
NuGet\Install-Package Woohoo.Emulation.TestData.CpuSM83 -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Woohoo.Emulation.TestData.CpuSM83" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Woohoo.Emulation.TestData.CpuSM83" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Woohoo.Emulation.TestData.CpuSM83" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Woohoo.Emulation.TestData.CpuSM83 --version 0.1.0
                    
#r "nuget: Woohoo.Emulation.TestData.CpuSM83, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Woohoo.Emulation.TestData.CpuSM83@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Woohoo.Emulation.TestData.CpuSM83&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Woohoo.Emulation.TestData.CpuSM83&version=0.1.0
                    
Install as a Cake Tool

gameboy-test-data

Full test data for CPU operations on the Gameboy. The test data is in the same format as https://github.com/TomHarte/ProcessorTests.

Each file contains 10,000 tests for each instruction, which the exception of CB.json which contains 100,000 tests.

Sample test:

{
    "name": "d1 96 a1",
    "initial": {
        "a": "0x86",
        "b": "0x35",
        "c": "0x50",
        "d": "0xa4",
        "e": "0x82",
        "f": "0xc0",
        "h": "0x54",
        "l": "0x7d",
        "pc": "0xd396",
        "sp": "0xa10a",
        "ram": [
            [
                "0xa10a",
                "0x42"
            ],
            [
                "0xa10b",
                "0x9c"
            ],
            [
                "0xd396",
                "0xd1"
            ]
        ]
    },
    "final": {
        "a": "0x86",
        "b": "0x35",
        "c": "0x50",
        "d": "0x9c",
        "e": "0x42",
        "f": "0xc0",
        "h": "0x54",
        "l": "0x7d",
        "pc": "0xd397",
        "sp": "0xa10c",
        "ram": [
            [
                "0xa10a",
                "0x42"
            ],
            [
                "0xa10b",
                "0x9c"
            ],
            [
                "0xd396",
                "0xd1"
            ]
        ]
    },
    "cycles": [
        [
            "0xd396",
            "0xd1",
            "read"
        ],
        [
            "0xa10a",
            "0x42",
            "read"
        ],
        [
            "0xa10b",
            "0x9c",
            "read"
        ]
    ]
},
Field Description
name Provided for human consumption and has no formal meaning.
initial The initial state of the processor; ram contains a list of values to store in memory prior to execution, each one in the form [address, value].
final The state of the processor and relevant memory contents after execution.
cycles A cycle-by-cycle breakdown of bus activity in the form [address, value, type] where type is either "read" or "write". Note: Cycles in this case refers to M-cycles.
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0 810 4/17/2024