/usr/share/z88dk/lib/ti83p_crt0.asm is in z88dk-data 1.8.ds1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | ; Stub for the TI 83+ calculator
;
; Stefano Bodrato - Dec 2000
; Feb 2000 - Speeded up the cpygraph
;
; $Id: ti83p_crt0.asm,v 1.21 2007/06/27 20:49:28 dom Exp $
;
; startup =
; n - Primary shell, compatible shells
; (Primary shell merely means it's the smallest implementation
; for that shell, that uses full capabilities of the shell)
;
; 1 - Ion (default)
; 2 - MirageOS without quit key
; 3 -
; 4 - TSE Kernel
; 10 - asm( executable
;
;-----------------------------------------------------
; Some general XDEFs and XREFs needed by the assembler
;-----------------------------------------------------
MODULE Ti83plus_crt0
XREF _main ; No matter what set up we have, main is
; always, always external to this file.
XDEF cleanup ; used by exit()
XDEF l_dcal ; used by calculated calls = "call (hl)"
XDEF _std_seed ; Integer rnd seed
XDEF _vfprintf ; vprintf is internal to this file so we
; only ever include one of the set of
; routines
XDEF exitsp ; Exit variables
XDEF exitcount ;
XDEF heaplast ;Near malloc heap variables
XDEF heapblocks
XDEF __sgoioblk ; For stdin, stdout, stder
XDEF base_graphics ; Graphics stuff
XDEF coords ;
XDEF cpygraph ; TI calc specific stuff
XDEF tidi ;
XDEF tiei ;
;-------------------------
; Begin of (shell) headers
;-------------------------
INCLUDE "#Ti83p.def" ; ROM / RAM adresses on Ti83+[SE]
INCLUDE "zcc_opt.def" ; Receive all compiler-defines
;-----------------------------
;2 - MirageOS without quit key
;-----------------------------
IF (startup=2)
DEFINE MirageOS ;Used by greyscale interrupt etc.
DEFINE NOT_DEFAULT_SHELL ;Else we would use Ion
;org $9D93 ;Origin
;defb $BB,$6D ;Compiled AsmPrgm token
org $9D95 ;We use Bin2var
ret ;So TIOS wont run the program
defb 1 ;Identifier as MirageOS program
DEFINE NEED_mirage_icon
INCLUDE "zcc_opt.def"
UNDEFINE NEED_mirage_icon
IF !DEFINED_NEED_mirage_icon
defb @01111000,@00000000 ;Picture of a map with "C+" on it
defb @10000100,@00000000
defb @10000011,@11111100 ;15x15 button
defb @10000000,@00000010
defb @10011111,@00000010
defb @10111111,@00000010
defb @10110000,@00110010
defb @10110000,@01111010
defb @10110000,@01111010
defb @10110000,@00110010
defb @10111111,@00000010
defb @10011111,@00000010
defb @10000000,@00000010
defb @10000000,@00000010
defb @01111111,@11111100
ENDIF
DEFINE NEED_name
INCLUDE "zcc_opt.def" ; Get namestring from zcc_opt.def
UNDEFINE NEED_name
IF !DEFINED_NEED_name
defm "Z88DK Small C+ Program"
ENDIF
defb $0 ; Termination zero
im 1 ; Disable MirageOS tasker interrupt...
ENDIF
;--------------
;4 - TSE Kernel
;--------------
IF (startup = 4)
DEFINE TSE
DEFINE NOT_DEFAULT_SHELL
org $9D94
ret
defm "TSE"
defb 1
defm " "
DEFINE NEED_name
INCLUDE "zcc_opt.def"
UNDEFINE NEED_name
IF !DEFINED_NEED_name
defm "Z88DK Small C+ Program"
ENDIF
defb $0
;-----------------------------------------------------------------------------
; External Data Required for virtual stack. I've set this to 400
; (the normal size of the Ti83+ stack). You can use #pragma to set
; a userdefined value (RECOMMENDED):
; #pragma output StackNeeded = nnn;
;-----------------------------------------------------------------------------
IF !DEFINED_StackNeeded
defw 400
ELSE
defw DEFINED_StackNeeded
ENDIF
ENDIF
;--------------------
;10 - asm( executable
;--------------------
IF (startup=10)
DEFINE ASM
DEFINE NOT_DEFAULT_SHELL
org $9D93
defb $BB,$6D
ENDIF
;-----------------
;1 - Ion (default)
;-----------------
IF !NOT_DEFAULT_SHELL
DEFINE Ion
org $9D95
;org $9D93
;defb $BB,$6D
ret
jr nc,start
DEFINE NEED_name
INCLUDE "zcc_opt.def"
UNDEFINE NEED_name
IF !DEFINED_NEED_name
defm "Z88DK Small C+ Program"
ENDIF
defb $0
ENDIF
;-------------------------------------
; End of header, begin of startup part
;-------------------------------------
.start
IF DEFINED_GimmeSpeed
ld a,1 ; switch to 15MHz (extra fast)
rst 28 ; bcall(SetExSpeed)
defw SetExSpeed ;
ENDIF ;
ld hl,0 ;
add hl,sp ;
ld (start1+1),hl ;
IF !DEFINED_atexit ; Less stack use
ld hl,-6 ; 3 pointers (more likely value)
add hl,sp ;
ld sp,hl ;
ld (exitsp),sp ;
ELSE ;
ld hl,-64 ; 32 pointers (ANSI standard)
add hl,sp ;
ld sp,hl ;
ld (exitsp),sp ;
ENDIF
LIB fputc_cons
ld hl,12
push hl
call fputc_cons
pop hl
IF DEFINED_GRAYlib
IF DEFINED_GimmeSpeed
INCLUDE "#gray83pSE.asm" ; 15MHz grayscale interrupt
ELSE
INCLUDE "#gray83p.asm" ; 6MHz grayscale interrupt
ENDIF
ELSE
INCLUDE "#intwrap83p.asm" ; Interrupt Wrapper
ENDIF
im 2 ; enable IM2 interrupt
call _main ; call main()
.cleanup ; exit() jumps to this point
ld iy,_IY_TABLE ; Restore flag pointer
im 1 ;
IF DEFINED_GimmeSpeed ;
xor a ; Switch to 6MHz (normal speed)
rst 28 ; bcall(SetExSpeed)
defw SetExSpeed ;
ENDIF ;
.start1 ld sp,0 ; Restore SP
IF TSE ; TSE Kernel
call _tseForceYield ; Task-switch back to shell (can return...)
jp start ; begin again if needed...
ENDIF ;
.tiei ei ;
IF DEFINED_GRAYlib ;
.cpygraph ;
ENDIF ;
.tidi ret ;
;----------------------------------------
; End of startup part, routines following
;----------------------------------------
.l_dcal
jp (hl) ; used as "call (hl)"
; Now, define some values for stdin, stdout, stderr
IF (!DEFINED_nostreams) ~ (DEFINED_ANSIstdio) ; ~ = AND
.__sgoioblk
INCLUDE "#stdio_fp.asm"
ENDIF
; Now, which of the vfprintf routines do we need?
IF (!DEFINED_nostreams) ~ (DEFINED_ANSIstdio) ; ~ = AND
IF DEFINED_floatstdio
._vfprintf
LIB vfprintf_fp
jp vfprintf_fp
ELSE
IF DEFINED_complexstdio
._vfprintf
LIB vfprintf_comp
jp vfprintf_comp
ELSE
IF DEFINED_ministdio
._vfprintf
LIB vfprintf_mini
jp vfprintf_mini
ENDIF
ENDIF
ENDIF
ENDIF
;Seed for integer rand() routines
._std_seed defw 0
;Atexit routine
.exitsp defw 0
.exitcount defb 0
; Heap stuff
.heaplast defw 0
.heapblocks defw 0
; mem stuff
.base_graphics defw plotSScreen
.coords defw 0
IF !DEFINED_GRAYlib
IF DEFINED_GimmeSpeed
.cpygraph
call $50 ; bjump(GrBufCpy)
defw GrBufCpy ; FastCopy is far too fast at 15MHz...
ELSE
IF Ion
defc cpygraph = $966E+80+15 ; Ion FastCopy call
ENDIF
IF MirageOS
defc cpygraph = $4092 ; MirageOS FastCopy call
ENDIF
IF TSE
defc cpygraph = $8A3A+18 ; TSE FastCopy call
ENDIF
IF ASM
.cpygraph
;(ion)FastCopy from Joe Wingbermuehle
di
ld a,$80 ; 7
out ($10),a ; 11
ld hl,plotSScreen-12-(-(12*64)+1) ; 10
ld a,$20 ; 7
ld c,a ; 4
inc hl ; 6 waste
dec hl ; 6 waste
fastCopyAgain:
ld b,64 ; 7
inc c ; 4
ld de,-(12*64)+1 ; 10
out ($10),a ; 11
add hl,de ; 11
ld de,10 ; 10
fastCopyLoop:
add hl,de ; 11
inc hl ; 6 waste
inc hl ; 6 waste
inc de ; 6
ld a,(hl) ; 7
out ($11),a ; 11
dec de ; 6
djnz fastCopyLoop ; 13/8
ld a,c ; 4
cp $2B+1 ; 7
jr nz,fastCopyAgain ; 10/1
ret ; 10
ENDIF
ENDIF
ENDIF
IF NEED_floatpack
INCLUDE "#float.asm"
;seed for random number generator - not used yet..
.fp_seed defb $80,$80,0,0,0,0
;Floating point registers...
.extra defs 6
.fa defs 6
.fasign defb 0
ENDIF
|