plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

dwarf386.c (214B)


      1 #include <u.h>
      2 #include <libc.h>
      3 #include <mach.h>
      4 #include "elf.h"
      5 #include "dwarf.h"
      6 
      7 char*
      8 dwarf386regs[] =
      9 {
     10 	"AX",
     11 	"CX",
     12 	"DX",
     13 	"BX",
     14 	"SP",
     15 	"BP",
     16 	"SI",
     17 	"DI",
     18 };
     19 
     20 int dwarf386nregs = nelem(dwarf386regs);