https://github.com/stid/woz64
C64 assembly port of original Apple 1 Woz Monitor + more
https://github.com/stid/woz64
Last synced: 9 months ago
JSON representation
C64 assembly port of original Apple 1 Woz Monitor + more
- Host: GitHub
- URL: https://github.com/stid/woz64
- Owner: stid
- License: gpl-3.0
- Created: 2019-11-06T04:31:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-03T04:10:10.000Z (almost 3 years ago)
- Last Synced: 2024-11-13T23:30:47.299Z (over 1 year ago)
- Language: Assembly
- Homepage:
- Size: 169 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VSCODE
``` json
{
"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)
``` bash
cartconv -t normal -name "woz" -i main.prg -o woz.crt
x64 woz.crt
cartconv -i woz.crt -o woz.bin
```