Added new GUI based on wxWidgets. Patch from bit.
This commit is contained in:
parent
a2f44b8ea7
commit
7fe91626d6
60 changed files with 11647 additions and 78 deletions
|
|
@ -3,6 +3,12 @@
|
|||
#include <string.h>
|
||||
#define printf pclog
|
||||
|
||||
#define READFLASH_FDC 0
|
||||
#define READFLASH_HDC 4
|
||||
#define readflash_set(offset, drive) readflash |= 1<<(offset+drive)
|
||||
#define readflash_clear(offset, drive) readflash &= ~(1<<(offset+drive))
|
||||
#define readflash_get(offset, drive) ((readflash&(1<<(offset+drive))) != 0)
|
||||
|
||||
/*Memory*/
|
||||
uint8_t *ram;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue