mirror of
https://github.com/blondie7575/WeeGUI.git
synced 2024-12-13 15:30:04 +00:00
0995f6675d
- Fixed a bug in the AppleSoft command matcher with prefixes - Removed useless &weegui command - Added &select, &focus, &act, &focusn, and &focusp commands for AppleSoft
40 lines
460 B
ArmAsm
40 lines
460 B
ArmAsm
;
|
|
; guidemo.s
|
|
; 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
|
|
rts
|
|
|
|
|
|
|
|
; Suppress some linker warnings - Must be the last thing in the file
|
|
.SEGMENT "ZPSAVE"
|
|
.SEGMENT "EXEHDR"
|
|
.SEGMENT "STARTUP"
|
|
.SEGMENT "INIT"
|
|
.SEGMENT "LOWCODE"
|