forked from KolibriOS/kolibrios
95e70a7b8c
- Added makefile - Added mklib tools - Fixed build git-svn-id: svn://kolibrios.org@8621 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
206 B
NASM
12 lines
206 B
NASM
format ELF
|
|
include "__lib__.inc"
|
|
fun equ __func@memset
|
|
fun_str equ 'memset'
|
|
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
|