C64 assembly port of original Apple 1 Woz Monitor + more
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
stid b4ed402b31 tmp 3 years ago
core diagnostic port 3 years ago
devices local 3 years ago
hardware local 3 years ago
libs local 3 years ago
progs tmp 3 years ago
.gitignore Fine tune + Keyb2 (not impl yet) 3 years ago
LICENSE Create LICENSE 3 years ago
README.md Update README.md 3 years ago
main.asm diagnostic port 3 years ago
makefile diagnostic port 3 years ago

README.md

VSCODE

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build -> C64 -> VICE",
            "type": "shell",
            "osx": {
                "command": "java -jar /opt/develop/stid/c64/KickAssembler/KickAss.jar -odir bin -log /opt/develop/stid/c64/woz64/bin/buildlog.txt -showmem /opt/develop/stid/c64/woz64/main.asm && /usr/local/bin/x64 bin/main.prg 2> /dev/null"
            },
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "presentation": {
                "clear": true
            },
            "problemMatcher": {
                "owner": "acme",
                "fileLocation": [
                    "relative",
                    "${workspaceFolder}"
                ],
                "pattern": {
                    "regexp": "^(Error - File\\s+(.*), line (\\d+) (\\(Zone .*\\))?:\\s+(.*))$",
                    "file": 2,
                    "location": 3,
                    "message": 1
                }
            }
        }
    ]
}

Compile to Cart (Vice)

cartconv -t normal -name "woz" -i main.prg -o woz.crt
x64 woz.crt
cartconv -i woz.crt -o woz.bin