Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
166 lines (106 sloc)
4.65 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; crt target defaults ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
IF __CRTCFG = -1 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; user supplied crt defaults ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
INCLUDE "crt_cfg.inc" | |
ENDIF | |
IF __CRTCFG = 0 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; embedded ram model ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
defc TAR__crt_org_code = 0 | |
defc TAR__crt_org_data = 0 | |
defc TAR__crt_org_bss = 0 | |
defc TAR__crt_model = 0 | |
defc TAR__register_sp = 0 | |
defc TAR__crt_stack_size = 512 | |
defc TAR__crt_initialize_bss = 0 | |
defc TAR__crt_include_preamble = 0 | |
defc TAR__crt_org_vector_table = 0 | |
defc TAR__crt_interrupt_mode = -1 | |
defc TAR__crt_interrupt_mode_exit = -1 | |
defc TAR__crt_enable_commandline = 0 | |
defc TAR__crt_enable_commandline_ex = 0 | |
defc TAR__crt_enable_restart = 0 | |
defc TAR__crt_enable_close = 1 | |
defc TAR__crt_enable_eidi = 0x13 | |
defc TAR__crt_on_exit = 0x10001 | |
defc TAR__crt_enable_rst = 0 | |
defc TAR__crt_enable_nmi = 0 | |
; clib defaults | |
defc TAR__clib_exit_stack_size = 0 | |
defc TAR__clib_quickexit_stack_size = 0 | |
defc TAR__clib_malloc_heap_size = -1 | |
defc TAR__clib_stdio_heap_size = 128 | |
defc TAR__clib_balloc_table_size = 0 | |
defc TAR__clib_fopen_max = 0 | |
defc TAR__clib_open_max = 0 | |
ENDIF | |
IF __CRTCFG = 1 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; embedded rom model ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
defc TAR__crt_org_code = 0 | |
defc TAR__crt_org_data = 32768 | |
defc TAR__crt_org_bss = -1 | |
defc TAR__crt_model = 1 | |
defc TAR__register_sp = 0 | |
defc TAR__crt_stack_size = 512 | |
defc TAR__crt_initialize_bss = 1 | |
defc TAR__crt_include_preamble = 0 | |
defc TAR__crt_org_vector_table = 0 | |
defc TAR__crt_interrupt_mode = -1 | |
defc TAR__crt_interrupt_mode_exit = -1 | |
defc TAR__crt_enable_commandline = 0 | |
defc TAR__crt_enable_commandline_ex = 0 | |
defc TAR__crt_enable_restart = 0 | |
defc TAR__crt_enable_close = 1 | |
defc TAR__crt_enable_eidi = 0x13 | |
defc TAR__crt_on_exit = 0x10001 | |
defc TAR__crt_enable_rst = 0 | |
defc TAR__crt_enable_nmi = 0 | |
; clib defaults | |
defc TAR__clib_exit_stack_size = 0 | |
defc TAR__clib_quickexit_stack_size = 0 | |
defc TAR__clib_malloc_heap_size = -1 | |
defc TAR__clib_stdio_heap_size = 128 | |
defc TAR__clib_balloc_table_size = 0 | |
defc TAR__clib_fopen_max = 0 | |
defc TAR__clib_open_max = 0 | |
ENDIF | |
IF __CRTCFG = 2 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; embedded compressed rom model ;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
defc TAR__crt_org_code = 0 | |
defc TAR__crt_org_data = 32768 | |
defc TAR__crt_org_bss = -1 | |
defc TAR__crt_model = 2 | |
defc TAR__register_sp = 0 | |
defc TAR__crt_stack_size = 512 | |
defc TAR__crt_initialize_bss = 1 | |
defc TAR__crt_include_preamble = 0 | |
defc TAR__crt_org_vector_table = 0 | |
defc TAR__crt_interrupt_mode = -1 | |
defc TAR__crt_interrupt_mode_exit = -1 | |
defc TAR__crt_enable_commandline = 0 | |
defc TAR__crt_enable_commandline_ex = 0 | |
defc TAR__crt_enable_restart = 0 | |
defc TAR__crt_enable_close = 1 | |
defc TAR__crt_enable_eidi = 0x13 | |
defc TAR__crt_on_exit = 0x10001 | |
defc TAR__crt_enable_rst = 0 | |
defc TAR__crt_enable_nmi = 0 | |
; clib defaults | |
defc TAR__clib_exit_stack_size = 0 | |
defc TAR__clib_quickexit_stack_size = 0 | |
defc TAR__clib_malloc_heap_size = -1 | |
defc TAR__clib_stdio_heap_size = 128 | |
defc TAR__clib_balloc_table_size = 0 | |
defc TAR__clib_fopen_max = 0 | |
defc TAR__clib_open_max = 0 | |
ENDIF | |
;; end crt target defaults ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |