1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-13 08:25:28 +00:00

Set the priority of the main() args constructor to 24 simply be cause most other targets do - and adjust the priority of the dos detection constructor to stay higher than the main() args constructor.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4954 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2011-01-29 21:39:17 +00:00
parent d2f59fb8b0
commit 9e31f7fb63
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
; ProDOS 8 2.0.3 - $23 ; ProDOS 8 2.0.3 - $23
; ;
.constructor initdostype, 19 .constructor initdostype, 25
.export __dos_type .export __dos_type
.include "mli.inc" .include "mli.inc"

View File

@@ -22,7 +22,7 @@
; TO-DO: ; TO-DO:
; Add a control-character quoting mechanism. ; Add a control-character quoting mechanism.
.constructor initmainargs, 18 .constructor initmainargs, 24
.import __argc, __argv, __dos_type .import __argc, __argv, __dos_type
.include "zeropage.inc" .include "zeropage.inc"