2014-08-29 12:19:19 -07:00
|
|
|
;
|
2014-09-07 16:06:25 -07:00
|
|
|
; guidemo.s
|
2014-08-29 12:19:19 -07:00
|
|
|
; AssemblyTest
|
|
|
|
;
|
|
|
|
; Created by Quinn Dunki on 8/15/14.
|
|
|
|
; Copyright (c) 2014 One Girl, One Laptop Productions. All rights reserved.
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
.org $6000
|
|
|
|
|
|
|
|
; Reserved locations
|
|
|
|
|
|
|
|
|
|
|
|
; Constants
|
|
|
|
|
|
|
|
|
|
|
|
; ROM entry points
|
|
|
|
|
|
|
|
|
|
|
|
; WeeGUI entry points
|
|
|
|
|
|
|
|
GUI_MAIN = $4000
|
|
|
|
|
|
|
|
|
|
|
|
; Main
|
|
|
|
|
|
|
|
main:
|
|
|
|
jmp GUI_MAIN
|
2014-09-09 20:34:14 -07:00
|
|
|
;rts
|
2014-08-29 12:19:19 -07:00
|
|
|
|
|
|
|
|
2014-09-07 16:06:25 -07:00
|
|
|
|
|
|
|
; Suppress some linker warnings - Must be the last thing in the file
|
|
|
|
.SEGMENT "ZPSAVE"
|
|
|
|
.SEGMENT "EXEHDR"
|
|
|
|
.SEGMENT "STARTUP"
|
|
|
|
.SEGMENT "INIT"
|
|
|
|
.SEGMENT "LOWCODE"
|