This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ORG $0000 ;begin assembly at memory block $0000 <-- always this block on Vectrex | |
; Magic Init Block | |
FCB $67,$20 | |
FCC "GCE XXXX" ; copyright info | |
FCB $80 | |
FDB music ; starting addres for music | |
FDB $f850 | |
FDB $30b8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hmm, last section of notes didn't save? | |
loop_variable EQU $C880 ;Create a variable for looping | |
These two goto types are unconditional | |
JMP = jump (>127b away) | |
BRA = branch (within 127b) | |
(LBRA = long branch) (but relative) | |
while JMP is absolute |