mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 09:24:33 +00:00
13 lines
185 B
NASM
13 lines
185 B
NASM
global __chkstk
|
|
global _tls_index
|
|
global _fltused
|
|
|
|
section .data
|
|
_tls_index: dd 0
|
|
_fltused: dd 0x9875
|
|
|
|
|
|
section .text
|
|
__chkstk: ; proc "c" (rawptr)
|
|
; TODO implement correctly
|
|
ret |