elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elks
/
tools
/
elkscmds
/
debug
/
syms.h
File editor
/* ELKS symbol table support */ #if defined(__ia16__) || defined(__WATCOMC__) #include <sys/cdefs.h> #else #define noinstrument #define __far #endif /* symbol table format * | byte type | word address | byte symbol length | symbol | * type: (lower case means static) * T, t .text * F, f .fartext * D, d .data * B, b .bss * 0 end of symbol table */ #define next(sym) \ ((sym) + 1 + sizeof(unsigned short) + ((unsigned char __far *)sym)[SYMLEN] + 1) #define TYPE 0 #define ADDR 1 #define SYMLEN 3 #define SYMBOL 4 unsigned char __far * noinstrument sym_read_exe_symbols(char *path); unsigned char __far * noinstrument sym_read_symbols(char *path); char * noinstrument sym_text_symbol(void *addr, int offset); char * noinstrument sym_ftext_symbol(void *addr, int offset); char * noinstrument sym_data_symbol(void *addr, int offset); char * noinstrument sym_symbol(void *addr, int offset); void * noinstrument sym_fn_start_address(void *addr); extern struct minix_exec_hdr sym_hdr;
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history