kolibrios/contrib/kolibri-libc/loader/debug_printf.asm

12 lines
218 B
NASM
Raw Normal View History

format ELF
include "__lib__.inc"
fun equ __func@debug_printf
fun_str equ 'debug_printf'
section '.text'
fun_name db fun_str, 0
section '.data'
extrn lib_name
public fun as fun_str
fun dd fun_name
lib dd lib_name