mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
20 lines
271 B
ArmAsm
20 lines
271 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; char DoDlgBox (char *myParamString);
|
||
|
|
||
|
.export _DoDlgBox
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_DoDlgBox:
|
||
|
sta r0L
|
||
|
stx r0H
|
||
|
jsr DoDlgBox
|
||
|
lda r0L
|
||
|
rts
|