home *** CD-ROM | disk | FTP | other *** search
- #ifndef _ED_H_
- #define _ED_H_
-
- #include "gotypes.h"
- #include "tss.h"
- #include "extdebug.h"
-
- extern ExternalDebuggerInfo edi;
- extern TSS a_tss;
-
- void run_child(void);
-
- /* these return nonzero if a page fault would have happened */
- int read_child(word32 child_addr, void *buf, unsigned len);
- int write_child(word32 child_addr, void *buf, unsigned len);
-
- #define A_blue 1
- #define A_green 2
- #define A_cyan 3
- #define A_red 4
- #define A_purple 5
- #define A_brown 6
- #define A_grey 7
- #define A_bold 8
- #define A_yellow 14
- #define A_white 15
-
- void ansi(int fg);
-
- #endif
-
-