mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
26 lines
231 B
C
26 lines
231 B
C
|
#if 0
|
||
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include <mach.h>
|
||
|
#include "elf.h"
|
||
|
#endif
|
||
|
#include "dwarf.h"
|
||
|
|
||
|
char*
|
||
|
dwarf386regs[] =
|
||
|
{
|
||
|
"AX",
|
||
|
"CX",
|
||
|
"DX",
|
||
|
"BX",
|
||
|
"SP",
|
||
|
"BP",
|
||
|
"SI",
|
||
|
"DI",
|
||
|
};
|
||
|
|
||
|
int dwarf386nregs = nelem(dwarf386regs);
|
||
|
|
||
|
|
||
|
|