Created
November 30, 2013 01:21
-
-
Save katejenkins/7714174 to your computer and use it in GitHub Desktop.
Magic Init Routine
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 | |
FCC "SIMPLE" ; program name | |
FCB $80,$0 | |
start: | |
bra start; endless loop, does nothing | |
music: | |
FDB $fee8 | |
FDB $feb6 | |
FCB $0,$80 | |
FCB $0,$80 ; these 4 lines tell the vectrex not to play any music |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment