]> git.sur5r.net Git - cc65/blob - libsrc/lynx/mainargs.s
Add definitions for tools so the makefile is useful by itself.
[cc65] / libsrc / lynx / mainargs.s
1 ;
2 ; Ullrich von Bassewitz, 2004-10-08
3 ;
4 ; Setup arguments for main
5 ;
6
7
8         .constructor    initmainargs, 24
9         .import         __argc, __argv
10
11
12 ;---------------------------------------------------------------------------
13 ; Setup arguments for main
14
15 .proc   initmainargs
16
17         rts
18
19 .endproc
20
21