]> git.sur5r.net Git - cc65/blob - libsrc/creativision/mainargs.s
Cleanups for Creativision.
[cc65] / libsrc / creativision / mainargs.s
1 ;
2 ; Ullrich von Bassewitz, 2003-03-07
3 ;
4 ; Setup arguments for main
5 ;
6
7
8         .constructor    initmainargs, 24
9         .import         __argc, __argv
10
11
12 ;---------------------------------------------------------------------------
13 ; Get possible command-line arguments. Goes into the special INIT segment,
14 ; which may be reused after the startup code is run
15
16 .segment        "INIT"
17
18 .proc   initmainargs
19
20         rts
21
22 .endproc