Skip to content

Instantly share code, notes, and snippets.

@katejenkins
Created November 30, 2013 01:21
Show Gist options
  • Save katejenkins/7714174 to your computer and use it in GitHub Desktop.
Save katejenkins/7714174 to your computer and use it in GitHub Desktop.
Magic Init Routine
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