-
Notifications
You must be signed in to change notification settings - Fork 0
/
stormstorm.asm
28 lines (24 loc) · 1.06 KB
/
stormstorm.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;***************************************************************************
; DEFINE SECTION
;***************************************************************************
include "../addons/libtari/vectrex/VECTREX.I"
include "data.i"
; start of vectrex memory with cartridge name...
org 0
;***************************************************************************
; HEADER SECTION
;***************************************************************************
include "header.asm"
;***************************************************************************
; CODE SECTION
;***************************************************************************
; here the cartridge program starts off
init:
jsr gameloop
jmp init
include "gameloop.asm"
include "time.asm"
include "../addons/libtari/vectrex/util.asm"
;***************************************************************************
end init
;***************************************************************************