1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Incorporated feedback for initial pull request.

This commit is contained in:
Stephan Mühlstrasser 2015-02-11 19:18:24 +01:00
parent d6a714a0d2
commit 5063e0ecca
2 changed files with 5 additions and 3 deletions

View File

@ -17,4 +17,4 @@ SEGMENTS {
DATA: load = RAM, type = rw;
BSS: load = RAM, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
}
}

View File

@ -1,5 +1,7 @@
; Addresses
SCRNBASE := $D000 ; Base of video RAM
VIDEORAMSIZE := $0400 ; Size of C1P video RAM (1 kB)
INPUTC := $FD00 ; Input character from keyboard
RESET := $FF00 ; Reset address, show boot prompt
; Other definitions
VIDEORAMSIZE = $0400 ; Size of C1P video RAM (1 kB)