dasm-c64/readme.md

27 lines
538 B
Markdown
Raw Permalink Normal View History

2020-12-09 12:31:45 +00:00
# dasm-c64
2020-12-09 12:38:17 +00:00
macros and definitions for the C64 for the dasm 6502 assembler.
will likely grow as I do more with the C64.
you can INCLUDE this file or just copy the parts you want.
2020-12-09 12:31:45 +00:00
## Current contents
* Definitions for all the KERNAL routines so they can be used by name (see https://www.c64-wiki.com/wiki/Kernal)
* BasicUpstart macro: Writes a BASIC start script for the address provided as an argument.
2020-12-09 12:38:17 +00:00
### Usage
```
include "c64.asm"
processor 6502
org $0801
BasicUpstart init
init:
; Your program here
```
## Licence
CC0