# HG changeset patch # User Michael Pavone # Date 1460838523 25200 # Node ID 3b270fc43ed41a71c3537d222232e574c65a369f # Parent 83532f944e3b604b4c256c25ce4db597e2257580 Get stateview building again diff -r 83532f944e3b -r 3b270fc43ed4 stateview.c --- a/stateview.c Sat Apr 16 13:07:03 2016 -0700 +++ b/stateview.c Sat Apr 16 13:28:43 2016 -0700 @@ -16,7 +16,7 @@ uint8_t reset = 1; uint8_t busreq = 0; -//uint16_t ram[RAM_WORDS]; +uint16_t *ram; uint8_t z80_ram[Z80_RAM_BYTES]; uint16_t read_dma_value(uint32_t address) @@ -56,6 +56,18 @@ { } +void handle_mousedown(int mouse, int button) +{ +} + +void handle_mouseup(int mouse, int button) +{ +} + +void handle_mouse_moved(int mouse, uint16_t x, uint16_t y, int16_t deltax, int16_t deltay) +{ +} + tern_node * config; int headless = 0;