2004-10-08 18:52:22 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2004-10-08
|
|
|
|
;
|
|
|
|
; Setup arguments for main
|
|
|
|
;
|
|
|
|
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.constructor initmainargs, 24
|
|
|
|
.import __argc, __argv
|
2004-10-08 18:52:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------
|
2016-03-06 20:26:22 +00:00
|
|
|
; Get possible command-line arguments. Goes into the special ONCE segment,
|
2005-02-26 09:28:46 +00:00
|
|
|
; which may be reused after the startup code is run
|
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
.segment "ONCE"
|
2004-10-08 18:52:22 +00:00
|
|
|
|
|
|
|
.proc initmainargs
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|