]> git.sesse.net Git - pistorm/blob - emulator.c
give threads titles
[pistorm] / emulator.c
1 #include "m68k.h"
2 #include "emulator.h"
3 #include "platforms/platforms.h"
4 #include "input/input.h"
5
6 #include "platforms/amiga/Gayle.h"
7 #include "platforms/amiga/gayle-ide/ide.h"
8 #include "platforms/amiga/amiga-registers.h"
9 #include "platforms/amiga/rtg/rtg.h"
10 #include "platforms/amiga/hunk-reloc.h"
11 #include "platforms/amiga/piscsi/piscsi.h"
12 #include "platforms/amiga/piscsi/piscsi-enums.h"
13 #include "platforms/amiga/net/pi-net.h"
14 #include "platforms/amiga/net/pi-net-enums.h"
15 #include "gpio/ps_protocol.h"
16
17 #include <assert.h>
18 #include <dirent.h>
19 #include <endian.h>
20 #include <fcntl.h>
21 #include <pthread.h>
22 #include <sched.h>
23 #include <signal.h>
24 #include <stdint.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/ioctl.h>
29 #include <sys/mman.h>
30 #include <sys/stat.h>
31 #include <sys/types.h>
32 #include <unistd.h>
33
34
35 unsigned char read_ranges;
36 unsigned int read_addr[8];
37 unsigned int read_upper[8];
38 unsigned char *read_data[8];
39 unsigned char write_ranges;
40 unsigned int write_addr[8];
41 unsigned int write_upper[8];
42 unsigned char *write_data[8];
43
44 int kb_hook_enabled = 0;
45 int mouse_hook_enabled = 0;
46 int cpu_emulation_running = 1;
47
48 uint8_t mouse_dx = 0, mouse_dy = 0;
49 uint8_t mouse_buttons = 0;
50 uint8_t mouse_extra = 0;
51
52 extern uint8_t gayle_int;
53 extern uint8_t gayle_ide_enabled;
54 extern uint8_t gayle_emulation_enabled;
55 extern uint8_t gayle_a4k_int;
56 extern volatile unsigned int *gpio;
57 extern volatile uint16_t srdata;
58 extern uint8_t realtime_graphics_debug;
59 uint8_t realtime_disassembly, int2_enabled = 0;
60 uint32_t do_disasm = 0, old_level;
61
62 char disasm_buf[4096];
63
64 #define KICKBASE 0xF80000
65 #define KICKSIZE 0x7FFFF
66
67 int mem_fd, mouse_fd = -1, keyboard_fd = -1;
68 int mem_fd_gpclk;
69 int irq;
70 int gayleirq;
71
72 //#define MUSASHI_HAX
73
74 #ifdef MUSASHI_HAX
75 #include "m68kcpu.h"
76 extern m68ki_cpu_core m68ki_cpu;
77 extern int m68ki_initial_cycles;
78 extern int m68ki_remaining_cycles;
79
80 #define M68K_SET_IRQ(i) old_level = CPU_INT_LEVEL; \
81         CPU_INT_LEVEL = (i << 8); \
82         if(old_level != 0x0700 && CPU_INT_LEVEL == 0x0700) \
83                 m68ki_cpu.nmi_pending = TRUE;
84 #define M68K_END_TIMESLICE      m68ki_initial_cycles = GET_CYCLES(); \
85         SET_CYCLES(0);
86 #else
87 #define M68K_SET_IRQ m68k_set_irq
88 #define M68K_END_TIMESLICE m68k_end_timeslice()
89 #endif
90
91 #define NOP asm("nop"); asm("nop"); asm("nop"); asm("nop");
92
93 #define DEBUG_EMULATOR
94 #ifdef DEBUG_EMULATOR
95 #define DEBUG printf
96 #else
97 #define DEBUG(...)
98 #endif
99
100 // Configurable emulator options
101 unsigned int cpu_type = M68K_CPU_TYPE_68000;
102 unsigned int loop_cycles = 300, irq_status = 0;
103 struct emulator_config *cfg = NULL;
104 char keyboard_file[256] = "/dev/input/event1";
105
106 uint64_t trig_irq = 0, serv_irq = 0;
107 uint16_t irq_delay = 0;
108
109 void *iplThread(void *args) {
110   printf("IPL thread running\n");
111   uint16_t old_irq = 0;
112   uint32_t value;
113
114   while (1) {
115     value = *(gpio + 13);
116
117     if (!(value & (1 << PIN_IPL_ZERO))) {
118       irq = 1;
119       old_irq = irq_delay;
120       NOP
121       M68K_END_TIMESLICE;
122     }
123     else {
124       if (irq) {
125         if (old_irq) {
126           old_irq--;
127         }
128         else {
129           irq = 0;
130         }
131         NOP
132         M68K_END_TIMESLICE;
133       }
134     }
135
136     if (gayle_ide_enabled) {
137       if (((gayle_int & 0x80) || gayle_a4k_int) && (get_ide(0)->drive[0].intrq || get_ide(0)->drive[1].intrq)) {
138         //get_ide(0)->drive[0].intrq = 0;
139         gayleirq = 1;
140         M68K_END_TIMESLICE;
141       }
142       else
143         gayleirq = 0;
144     }
145     //usleep(0);
146     NOP NOP NOP NOP NOP NOP NOP NOP
147     NOP NOP NOP NOP NOP NOP NOP NOP
148     NOP NOP NOP NOP NOP NOP NOP NOP
149     /*NOP NOP NOP NOP NOP NOP NOP NOP
150     NOP NOP NOP NOP NOP NOP NOP NOP
151     NOP NOP NOP NOP NOP NOP NOP NOP*/
152   }
153   return args;
154 }
155
156 void stop_cpu_emulation(uint8_t disasm_cur) {
157   M68K_END_TIMESLICE;
158   if (disasm_cur) {
159     m68k_disassemble(disasm_buf, m68k_get_reg(NULL, M68K_REG_PC), cpu_type);
160     printf("REGA: 0:$%.8X 1:$%.8X 2:$%.8X 3:$%.8X 4:$%.8X 5:$%.8X 6:$%.8X 7:$%.8X\n", m68k_get_reg(NULL, M68K_REG_A0), m68k_get_reg(NULL, M68K_REG_A1), m68k_get_reg(NULL, M68K_REG_A2), m68k_get_reg(NULL, M68K_REG_A3), \
161             m68k_get_reg(NULL, M68K_REG_A4), m68k_get_reg(NULL, M68K_REG_A5), m68k_get_reg(NULL, M68K_REG_A6), m68k_get_reg(NULL, M68K_REG_A7));
162     printf("REGD: 0:$%.8X 1:$%.8X 2:$%.8X 3:$%.8X 4:$%.8X 5:$%.8X 6:$%.8X 7:$%.8X\n", m68k_get_reg(NULL, M68K_REG_D0), m68k_get_reg(NULL, M68K_REG_D1), m68k_get_reg(NULL, M68K_REG_D2), m68k_get_reg(NULL, M68K_REG_D3), \
163             m68k_get_reg(NULL, M68K_REG_D4), m68k_get_reg(NULL, M68K_REG_D5), m68k_get_reg(NULL, M68K_REG_D6), m68k_get_reg(NULL, M68K_REG_D7));
164     printf("%.8X (%.8X)]] %s\n", m68k_get_reg(NULL, M68K_REG_PC), (m68k_get_reg(NULL, M68K_REG_PC) & 0xFFFFFF), disasm_buf);
165     realtime_disassembly = 1;
166   }
167
168   cpu_emulation_running = 0;
169   do_disasm = 0;
170 }
171
172 unsigned int ovl;
173 static volatile unsigned char maprom;
174
175 void sigint_handler(int sig_num) {
176   //if (sig_num) { }
177   //cpu_emulation_running = 0;
178
179   //return;
180   printf("Received sigint %d, exiting.\n", sig_num);
181   if (mouse_fd != -1)
182     close(mouse_fd);
183   if (mem_fd)
184     close(mem_fd);
185
186   if (cfg->platform->shutdown) {
187     cfg->platform->shutdown(cfg);
188   }
189
190   printf("IRQs triggered: %lld\n", trig_irq);
191   printf("IRQs serviced: %lld\n", serv_irq);
192
193   exit(0);
194 }
195
196 int main(int argc, char *argv[]) {
197   int g;
198   //const struct sched_param priority = {99};
199
200   if (argc > 1) {
201     irq_delay = atoi(argv[1]);
202     printf("Setting IRQ delay to %d loops (%s).\n", irq_delay, argv[1]);
203   }
204
205   // Some command line switch stuffles
206   for (g = 1; g < argc; g++) {
207     if (strcmp(argv[g], "--cpu_type") == 0 || strcmp(argv[g], "--cpu") == 0) {
208       if (g + 1 >= argc) {
209         printf("%s switch found, but no CPU type specified.\n", argv[g]);
210       } else {
211         g++;
212         cpu_type = get_m68k_cpu_type(argv[g]);
213       }
214     }
215     else if (strcmp(argv[g], "--config-file") == 0 || strcmp(argv[g], "--config") == 0) {
216       if (g + 1 >= argc) {
217         printf("%s switch found, but no config filename specified.\n", argv[g]);
218       } else {
219         g++;
220         cfg = load_config_file(argv[g]);
221       }
222     }
223     else if (strcmp(argv[g], "--keyboard-file") == 0 || strcmp(argv[g], "--kbfile") == 0) {
224       if (g + 1 >= argc) {
225         printf("%s switch found, but no keyboard device path specified.\n", argv[g]);
226       } else {
227         g++;
228         strcpy(keyboard_file, argv[g]);
229       }
230     }
231   }
232
233   if (!cfg) {
234     printf("No config file specified. Trying to load default.cfg...\n");
235     cfg = load_config_file("default.cfg");
236     if (!cfg) {
237       printf("Couldn't load default.cfg, empty emulator config will be used.\n");
238       cfg = (struct emulator_config *)calloc(1, sizeof(struct emulator_config));
239       if (!cfg) {
240         printf("Failed to allocate memory for emulator config!\n");
241         return 1;
242       }
243       memset(cfg, 0x00, sizeof(struct emulator_config));
244     }
245   }
246
247   if (cfg) {
248     if (cfg->cpu_type) cpu_type = cfg->cpu_type;
249     if (cfg->loop_cycles) loop_cycles = cfg->loop_cycles;
250
251     if (!cfg->platform)
252       cfg->platform = make_platform_config("none", "generic");
253     cfg->platform->platform_initial_setup(cfg);
254   }
255
256   if (cfg->mouse_enabled) {
257     mouse_fd = open(cfg->mouse_file, O_RDWR | O_NONBLOCK);
258     if (mouse_fd == -1) {
259       printf("Failed to open %s, can't enable mouse hook.\n", cfg->mouse_file);
260       cfg->mouse_enabled = 0;
261     } else {
262       /**
263        * *-*-*-* magic numbers! *-*-*-*
264        * great, so waaaay back in the history of the pc, the ps/2 protocol set the standard for mice
265        * and in the process, the mouse sample rate was defined as a way of putting mice into vendor-specific modes.
266        * as the ancient gpm command explains, almost everything except incredibly old mice talk the IntelliMouse
267        * protocol, which reports four bytes. by default, every mouse starts in 3-byte mode (don't report wheel or
268        * additional buttons) until imps2 magic is sent. so, command $f3 is "set sample rate", followed by a byte.
269        */
270       uint8_t mouse_init[] = { 0xf4, 0xf3, 0x64 }; // enable, then set sample rate 100
271       uint8_t imps2_init[] = { 0xf3, 0xc8, 0xf3, 0x64, 0xf3, 0x50 }; // magic sequence; set sample 200, 100, 80
272       if (write(mouse_fd, mouse_init, sizeof(mouse_init)) != -1) {
273         if (write(mouse_fd, imps2_init, sizeof(imps2_init)) == -1)
274           printf("[MOUSE] Couldn't enable scroll wheel events; is this mouse from the 1980s?\n");
275       } else
276         printf("[MOUSE] Mouse didn't respond to normal PS/2 init; have you plugged a brick in by mistake?\n");
277     }
278   }
279
280   keyboard_fd = open(keyboard_file, O_RDONLY | O_NONBLOCK);
281   if (keyboard_fd == -1) {
282     printf("Failed to open keyboard event source.\n");
283   }
284
285   InitGayle();
286
287   signal(SIGINT, sigint_handler);
288   /*setup_io();
289
290   //goto skip_everything;
291
292   // Enable 200MHz CLK output on GPIO4, adjust divider and pll source depending
293   // on pi model
294   printf("Enable 200MHz GPCLK0 on GPIO4\n");
295   gpio_enable_200mhz();
296
297   // reset cpld statemachine first
298
299   write_reg(0x01);
300   usleep(100);
301   usleep(1500);
302   write_reg(0x00);
303   usleep(100);
304
305   // reset amiga and statemachine
306   skip_everything:;
307
308   usleep(1500);
309
310   m68k_init();
311   printf("Setting CPU type to %d.\n", cpu_type);
312   m68k_set_cpu_type(cpu_type);
313   cpu_pulse_reset();
314
315   if (maprom == 1) {
316     m68k_set_reg(M68K_REG_PC, 0xF80002);
317   } else {
318     m68k_set_reg(M68K_REG_PC, 0x0);
319   }*/
320   ps_setup_protocol();
321   ps_reset_state_machine();
322   ps_pulse_reset();
323
324   usleep(1500);
325   m68k_init();
326   printf("Setting CPU type to %d.\n", cpu_type);
327   m68k_set_cpu_type(cpu_type);
328   cpu_pulse_reset();
329
330   char c = 0, c_code = 0, c_type = 0;
331   uint32_t last_irq = 0, last_last_irq = 0;
332
333   pthread_t id;
334   int err;
335   err = pthread_create(&id, NULL, &iplThread, NULL);
336   if (err != 0)
337     printf("can't create IPL thread: [%s]", strerror(err));
338   else {
339     pthread_setname_np(id, "pistorm: ipl");
340     printf("IPL Thread created successfully\n");
341   }
342
343   m68k_pulse_reset();
344   while (42) {
345     if (mouse_hook_enabled) {
346       get_mouse_status(&mouse_dx, &mouse_dy, &mouse_buttons, &mouse_extra);
347     }
348
349     if (realtime_disassembly && (do_disasm || cpu_emulation_running)) {
350       m68k_disassemble(disasm_buf, m68k_get_reg(NULL, M68K_REG_PC), cpu_type);
351       printf("REGA: 0:$%.8X 1:$%.8X 2:$%.8X 3:$%.8X 4:$%.8X 5:$%.8X 6:$%.8X 7:$%.8X\n", m68k_get_reg(NULL, M68K_REG_A0), m68k_get_reg(NULL, M68K_REG_A1), m68k_get_reg(NULL, M68K_REG_A2), m68k_get_reg(NULL, M68K_REG_A3), \
352               m68k_get_reg(NULL, M68K_REG_A4), m68k_get_reg(NULL, M68K_REG_A5), m68k_get_reg(NULL, M68K_REG_A6), m68k_get_reg(NULL, M68K_REG_A7));
353       printf("REGD: 0:$%.8X 1:$%.8X 2:$%.8X 3:$%.8X 4:$%.8X 5:$%.8X 6:$%.8X 7:$%.8X\n", m68k_get_reg(NULL, M68K_REG_D0), m68k_get_reg(NULL, M68K_REG_D1), m68k_get_reg(NULL, M68K_REG_D2), m68k_get_reg(NULL, M68K_REG_D3), \
354               m68k_get_reg(NULL, M68K_REG_D4), m68k_get_reg(NULL, M68K_REG_D5), m68k_get_reg(NULL, M68K_REG_D6), m68k_get_reg(NULL, M68K_REG_D7));
355       printf("%.8X (%.8X)]] %s\n", m68k_get_reg(NULL, M68K_REG_PC), (m68k_get_reg(NULL, M68K_REG_PC) & 0xFFFFFF), disasm_buf);
356       if (do_disasm)
357         do_disasm--;
358       m68k_execute(1);
359     }
360     else {
361       if (cpu_emulation_running)
362         m68k_execute(loop_cycles);
363     }
364
365     if (irq) {
366       while (irq) {
367         last_irq = ((read_reg() & 0xe000) >> 13);
368         if (last_irq != last_last_irq) {
369           last_last_irq = last_irq;
370           M68K_SET_IRQ(last_irq);
371         }
372         m68k_execute(5);
373       }
374       if (gayleirq && int2_enabled) {
375         write16(0xdff09c, 0x8000 | (1 << 3) && last_irq != 2);
376         last_last_irq = last_irq;
377         last_irq = 2;
378         M68K_SET_IRQ(2);
379       }
380       M68K_SET_IRQ(0);
381       last_last_irq = 0;
382     }
383     /*else {
384       if (last_irq != 0) {
385         M68K_SET_IRQ(0);
386         last_last_irq = last_irq;
387         last_irq = 0;
388       }
389     }*/
390
391     while (get_key_char(&c, &c_code, &c_type)) {
392       if (c && c == cfg->keyboard_toggle_key && !kb_hook_enabled) {
393         kb_hook_enabled = 1;
394         printf("Keyboard hook enabled.\n");
395       }
396       else if (kb_hook_enabled) {
397         if (c == 0x1B && c_type) {
398           kb_hook_enabled = 0;
399           printf("Keyboard hook disabled.\n");
400         }
401         else {
402           /*printf("Key code: %.2X - ", c_code);
403           switch (c_type) {
404             case 0:
405               printf("released.\n");
406               break;
407             case 1:
408               printf("pressed.\n");
409               break;
410             case 2:
411               printf("repeat.\n");
412               break;
413             default:
414               printf("unknown.\n");
415               break;
416           }*/
417           if (queue_keypress(c_code, c_type, cfg->platform->id) && int2_enabled && last_irq != 2) {
418             //last_irq = 0;
419             //M68K_SET_IRQ(2);
420           }
421         }
422       }
423
424       // pause pressed; trigger nmi (int level 7)
425       if (c == 0x01 && c_type) {
426         printf("[INT] Sending NMI\n");
427         last_irq = 7;
428         M68K_SET_IRQ(7);
429       }
430
431       if (!kb_hook_enabled && c_type) {
432         if (c && c == cfg->mouse_toggle_key) {
433           mouse_hook_enabled ^= 1;
434           printf("Mouse hook %s.\n", mouse_hook_enabled ? "enabled" : "disabled");
435           mouse_dx = mouse_dy = mouse_buttons = mouse_extra = 0;
436         }
437         if (c == 'r') {
438           cpu_emulation_running ^= 1;
439           printf("CPU emulation is now %s\n", cpu_emulation_running ? "running" : "stopped");
440         }
441         if (c == 'g') {
442           realtime_graphics_debug ^= 1;
443           printf("Real time graphics debug is now %s\n", realtime_graphics_debug ? "on" : "off");
444         }
445         if (c == 'R') {
446           cpu_pulse_reset();
447           //m68k_pulse_reset();
448           printf("CPU emulation reset.\n");
449         }
450         if (c == 'q') {
451           printf("Quitting and exiting emulator.\n");
452           goto stop_cpu_emulation;
453         }
454         if (c == 'd') {
455           realtime_disassembly ^= 1;
456           do_disasm = 1;
457           printf("Real time disassembly is now %s\n", realtime_disassembly ? "on" : "off");
458         }
459         if (c == 'D') {
460           int r = get_mapped_item_by_address(cfg, 0x08000000);
461           if (r != -1) {
462             printf("Dumping first 16MB of mapped range %d.\n", r);
463             FILE *dmp = fopen("./memdmp.bin", "wb+");
464             fwrite(cfg->map_data[r], 16 * SIZE_MEGA, 1, dmp);
465             fclose(dmp);
466           }
467         }
468         if (c == 's' && realtime_disassembly) {
469           do_disasm = 1;
470         }
471         if (c == 'S' && realtime_disassembly) {
472           do_disasm = 128;
473         }
474       }
475     }
476
477     if (mouse_hook_enabled && (mouse_extra != 0x00)) {
478       // mouse wheel events have occurred; unlike l/m/r buttons, these are queued as keypresses, so add to end of buffer
479       switch (mouse_extra) {
480         case 0xff:
481           // wheel up
482           queue_keypress(0xfe, KEYPRESS_PRESS, PLATFORM_AMIGA);
483           break;
484         case 0x01:
485           // wheel down
486           queue_keypress(0xff, KEYPRESS_PRESS, PLATFORM_AMIGA);
487           break;
488       }
489
490       // dampen the scroll wheel until next while loop iteration
491       mouse_extra = 0x00;
492     }
493   }
494
495   stop_cpu_emulation:;
496
497   if (mouse_fd != -1)
498     close(mouse_fd);
499   if (mem_fd)
500     close(mem_fd);
501
502   return 0;
503 }
504
505 void cpu_pulse_reset(void) {
506   ps_pulse_reset();
507   //write_reg(0x00);
508   // printf("Status Reg%x\n",read_reg());
509   //usleep(100000);
510   //write_reg(0x02);
511   // printf("Status Reg%x\n",read_reg());
512   if (cfg->platform->handle_reset)
513     cfg->platform->handle_reset(cfg);
514
515
516   m68k_write_memory_16(INTENA, 0x7FFF);
517   ovl = 1;
518   m68k_write_memory_8(0xbfe201, 0x0001);  // AMIGA OVL
519   m68k_write_memory_8(0xbfe001, 0x0001);  // AMIGA OVL high (ROM@0x0)
520
521   m68k_pulse_reset();
522 }
523
524 int cpu_irq_ack(int level) {
525   printf("cpu irq ack\n");
526   return level;
527 }
528
529 static unsigned int target = 0;
530 static uint8_t send_keypress = 0;
531
532 uint8_t cdtv_dmac_reg_idx_read();
533 void cdtv_dmac_reg_idx_write(uint8_t value);
534 uint32_t cdtv_dmac_read(uint32_t address, uint8_t type);
535 void cdtv_dmac_write(uint32_t address, uint32_t value, uint8_t type);
536
537 #define PLATFORM_CHECK_READ(a) \
538   if (address >= cfg->custom_low && address < cfg->custom_high) { \
539     unsigned int target = 0; \
540     switch(cfg->platform->id) { \
541       case PLATFORM_AMIGA: { \
542         if (address >= PISCSI_OFFSET && address < PISCSI_UPPER) { \
543           return handle_piscsi_read(address, a); \
544         } \
545         if (address >= PINET_OFFSET && address < PINET_UPPER) { \
546           return handle_pinet_read(address, a); \
547         } \
548         if (address >= PIGFX_RTG_BASE && address < PIGFX_UPPER) { \
549           return rtg_read((address & 0x0FFFFFFF), a); \
550         } \
551         if (custom_read_amiga(cfg, address, &target, a) != -1) { \
552           return target; \
553         } \
554         break; \
555       } \
556       default: \
557         break; \
558     } \
559   } \
560   if (ovl || (address >= cfg->mapped_low && address < cfg->mapped_high)) { \
561     if (handle_mapped_read(cfg, address, &target, a) != -1) \
562       return target; \
563   }
564
565 unsigned int m68k_read_memory_8(unsigned int address) {
566   PLATFORM_CHECK_READ(OP_TYPE_BYTE);
567
568   /*if (address >= 0xE90000 && address < 0xF00000) {
569     printf("BYTE read from DMAC @%.8X:", address);
570     uint32_t v = cdtv_dmac_read(address & 0xFFFF, OP_TYPE_BYTE);
571     printf("%.2X\n", v);
572     M68K_END_TIMESLICE;
573     cpu_emulation_running = 0;
574     return v;
575   }*/
576
577   /*if (m68k_get_reg(NULL, M68K_REG_PC) >= 0x080032F0 && m68k_get_reg(NULL, M68K_REG_PC) <= 0x080032F0 + 0x4000) {
578     stop_cpu_emulation(1);
579   }*/
580
581
582   if (address & 0xFF000000)
583     return 0;
584
585   unsigned char result = (unsigned int)read8((uint32_t)address);
586
587   if (mouse_hook_enabled) {
588     if (address == CIAAPRA) {
589       if (mouse_buttons & 0x01) {
590         //mouse_buttons -= 1;
591         return (unsigned int)(result ^ 0x40);
592       }
593
594       return (unsigned int)result;
595     }
596   }
597
598   if (kb_hook_enabled) {
599     if (address == CIAAICR) {
600       if (get_num_kb_queued() && (!send_keypress || send_keypress == 1)) {
601         result |= 0x08;
602         if (!send_keypress)
603           send_keypress = 1;
604       }
605       if (send_keypress == 2) {
606         //result |= 0x02;
607         send_keypress = 0;
608       }
609       return result;
610     }
611     if (address == CIAADAT) {
612       //if (send_keypress) {
613         uint8_t c = 0, t = 0;
614         pop_queued_key(&c, &t);
615         t ^= 0x01;
616         result = ((c << 1) | t) ^ 0xFF;
617         send_keypress = 2;
618         //M68K_SET_IRQ(0);
619       //}
620       return result;
621     }
622   }
623
624   return result;
625 }
626
627 unsigned int m68k_read_memory_16(unsigned int address) {
628   PLATFORM_CHECK_READ(OP_TYPE_WORD);
629
630   /*if (m68k_get_reg(NULL, M68K_REG_PC) >= 0x080032F0 && m68k_get_reg(NULL, M68K_REG_PC) <= 0x080032F0 + 0x4000) {
631     stop_cpu_emulation(1);
632   }*/
633
634   /*if (address >= 0xE90000 && address < 0xF00000) {
635     printf("WORD read from DMAC @%.8X:", address);
636     uint32_t v = cdtv_dmac_read(address & 0xFFFF, OP_TYPE_WORD);
637     printf("%.2X\n", v);
638     M68K_END_TIMESLICE;
639     cpu_emulation_running = 0;
640     return v;
641   }*/
642
643   if (mouse_hook_enabled) {
644     if (address == JOY0DAT) {
645       // Forward mouse valueses to Amyga.
646       unsigned short result = (mouse_dy << 8) | (mouse_dx);
647       return (unsigned int)result;
648     }
649     /*if (address == CIAAPRA) {
650       unsigned short result = (unsigned int)read16((uint32_t)address);
651       if (mouse_buttons & 0x01) {
652         return (unsigned int)(result | 0x40);
653       }
654       else
655           return (unsigned int)result;
656     }*/
657     if (address == POTGOR) {
658       unsigned short result = (unsigned int)read16((uint32_t)address);
659       // bit 1 rmb, bit 2 mmb
660       if (mouse_buttons & 0x06) {
661         return (unsigned int)((result ^ ((mouse_buttons & 0x02) << 9))   // move rmb to bit 10
662                             & (result ^ ((mouse_buttons & 0x04) << 6))); // move mmb to bit 8
663       }
664       return (unsigned int)(result & 0xfffd);
665     }
666   }
667
668   if (address & 0xFF000000)
669     return 0;
670
671   if (address & 0x01) {
672     return ((read8(address) << 8) | read8(address + 1));
673   }
674   return (unsigned int)read16((uint32_t)address);
675 }
676
677 unsigned int m68k_read_memory_32(unsigned int address) {
678   PLATFORM_CHECK_READ(OP_TYPE_LONGWORD);
679
680   /*if (m68k_get_reg(NULL, M68K_REG_PC) >= 0x080032F0 && m68k_get_reg(NULL, M68K_REG_PC) <= 0x080032F0 + 0x4000) {
681     stop_cpu_emulation(1);
682   }*/
683
684   /*if (address >= 0xE90000 && address < 0xF00000) {
685     printf("LONGWORD read from DMAC @%.8X:", address);
686     uint32_t v = cdtv_dmac_read(address & 0xFFFF, OP_TYPE_LONGWORD);
687     printf("%.2X\n", v);
688     M68K_END_TIMESLICE;
689     cpu_emulation_running = 0;
690     return v;
691   }*/
692
693   if (address & 0xFF000000)
694     return 0;
695
696   if (address & 0x01) {
697     uint32_t c = read8(address);
698     c |= (be16toh(read16(address+1)) << 8);
699     c |= (read8(address + 3) << 24);
700     return htobe32(c);
701   }
702   uint16_t a = read16(address);
703   uint16_t b = read16(address + 2);
704   return (a << 16) | b;
705 }
706
707 #define PLATFORM_CHECK_WRITE(a) \
708   if (address >= cfg->custom_low && address < cfg->custom_high) { \
709     switch(cfg->platform->id) { \
710       case PLATFORM_AMIGA: { \
711         if (address >= PISCSI_OFFSET && address < PISCSI_UPPER) { \
712           handle_piscsi_write(address, value, a); \
713         } \
714         if (address >= PINET_OFFSET && address < PINET_UPPER) { \
715           handle_pinet_write(address, value, a); \
716         } \
717         if (address >= PIGFX_RTG_BASE && address < PIGFX_UPPER) { \
718           rtg_write((address & 0x0FFFFFFF), value, a); \
719           return; \
720         } \
721         if (custom_write_amiga(cfg, address, value, a) != -1) { \
722           return; \
723         } \
724         break; \
725       } \
726       default: \
727         break; \
728     } \
729   } \
730   if (address >= cfg->mapped_low && address < cfg->mapped_high) { \
731     if (handle_mapped_write(cfg, address, value, a) != -1) \
732       return; \
733   }
734
735 void m68k_write_memory_8(unsigned int address, unsigned int value) {
736   PLATFORM_CHECK_WRITE(OP_TYPE_BYTE);
737
738   /*if (address >= 0xE90000 && address < 0xF00000) {
739     printf("BYTE write to DMAC @%.8X: %.2X\n", address, value);
740     cdtv_dmac_write(address & 0xFFFF, value, OP_TYPE_BYTE);
741     M68K_END_TIMESLICE;
742     cpu_emulation_running = 0;
743     return;
744   }*/
745
746   if (address == 0xbfe001) {
747     if (ovl != (value & (1 << 0))) {
748       ovl = (value & (1 << 0));
749       printf("OVL:%x\n", ovl);
750     }
751   }
752
753   if (address & 0xFF000000)
754     return;
755
756   write8((uint32_t)address, value);
757   return;
758 }
759
760 void m68k_write_memory_16(unsigned int address, unsigned int value) {
761   PLATFORM_CHECK_WRITE(OP_TYPE_WORD);
762
763   /*if (address >= 0xE90000 && address < 0xF00000) {
764     printf("WORD write to DMAC @%.8X: %.4X\n", address, value);
765     cdtv_dmac_write(address & 0xFFFF, value, OP_TYPE_WORD);
766     M68K_END_TIMESLICE;
767     cpu_emulation_running = 0;
768     return;
769   }*/
770
771   if (address == 0xDFF030) {
772     char *serdat = (char *)&value;
773     // SERDAT word. see amiga dev docs appendix a; upper byte is control codes, and bit 0 is always 1.
774     // ignore this upper byte as it's not viewable data, only display lower byte.
775     printf("%c", serdat[0]);
776   }
777   if (address == 0xDFF09A) {
778     if (!(value & 0x8000)) {
779       if (value & 0x04) {
780         int2_enabled = 0;
781       }
782     }
783     else if (value & 0x04) {
784       int2_enabled = 1;
785     }
786   }
787
788   if (address & 0xFF000000)
789     return;
790
791   if (address & 0x01)
792     printf("Unaligned WORD write!\n");
793
794   write16((uint32_t)address, value);
795   return;
796 }
797
798 void m68k_write_memory_32(unsigned int address, unsigned int value) {
799   PLATFORM_CHECK_WRITE(OP_TYPE_LONGWORD);
800
801   /*if (address >= 0xE90000 && address < 0xF00000) {
802     printf("LONGWORD write to DMAC @%.8X: %.8X\n", address, value);
803     cdtv_dmac_write(address & 0xFFFF, value, OP_TYPE_LONGWORD);
804     M68K_END_TIMESLICE;
805     cpu_emulation_running = 0;
806     return;
807   }*/
808
809   if (address & 0xFF000000)
810     return;
811
812   if (address & 0x01)
813     printf("Unaligned LONGWORD write!\n");
814
815   write16(address, value >> 16);
816   write16(address + 2, value);
817   return;
818 }