]> git.sesse.net Git - pistorm/blob - emulator.c
don't do last_irq thing; rely in M68K_SET_IRQ
[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         M68K_SET_IRQ(7);
428       }
429
430       if (!kb_hook_enabled && c_type) {
431         if (c && c == cfg->mouse_toggle_key) {
432           mouse_hook_enabled ^= 1;
433           printf("Mouse hook %s.\n", mouse_hook_enabled ? "enabled" : "disabled");
434           mouse_dx = mouse_dy = mouse_buttons = mouse_extra = 0;
435         }
436         if (c == 'r') {
437           cpu_emulation_running ^= 1;
438           printf("CPU emulation is now %s\n", cpu_emulation_running ? "running" : "stopped");
439         }
440         if (c == 'g') {
441           realtime_graphics_debug ^= 1;
442           printf("Real time graphics debug is now %s\n", realtime_graphics_debug ? "on" : "off");
443         }
444         if (c == 'R') {
445           cpu_pulse_reset();
446           //m68k_pulse_reset();
447           printf("CPU emulation reset.\n");
448         }
449         if (c == 'q') {
450           printf("Quitting and exiting emulator.\n");
451           goto stop_cpu_emulation;
452         }
453         if (c == 'd') {
454           realtime_disassembly ^= 1;
455           do_disasm = 1;
456           printf("Real time disassembly is now %s\n", realtime_disassembly ? "on" : "off");
457         }
458         if (c == 'D') {
459           int r = get_mapped_item_by_address(cfg, 0x08000000);
460           if (r != -1) {
461             printf("Dumping first 16MB of mapped range %d.\n", r);
462             FILE *dmp = fopen("./memdmp.bin", "wb+");
463             fwrite(cfg->map_data[r], 16 * SIZE_MEGA, 1, dmp);
464             fclose(dmp);
465           }
466         }
467         if (c == 's' && realtime_disassembly) {
468           do_disasm = 1;
469         }
470         if (c == 'S' && realtime_disassembly) {
471           do_disasm = 128;
472         }
473       }
474     }
475
476     if (mouse_hook_enabled && (mouse_extra != 0x00)) {
477       // mouse wheel events have occurred; unlike l/m/r buttons, these are queued as keypresses, so add to end of buffer
478       switch (mouse_extra) {
479         case 0xff:
480           // wheel up
481           queue_keypress(0xfe, KEYPRESS_PRESS, PLATFORM_AMIGA);
482           break;
483         case 0x01:
484           // wheel down
485           queue_keypress(0xff, KEYPRESS_PRESS, PLATFORM_AMIGA);
486           break;
487       }
488
489       // dampen the scroll wheel until next while loop iteration
490       mouse_extra = 0x00;
491     }
492   }
493
494   stop_cpu_emulation:;
495
496   if (mouse_fd != -1)
497     close(mouse_fd);
498   if (mem_fd)
499     close(mem_fd);
500
501   return 0;
502 }
503
504 void cpu_pulse_reset(void) {
505   ps_pulse_reset();
506   //write_reg(0x00);
507   // printf("Status Reg%x\n",read_reg());
508   //usleep(100000);
509   //write_reg(0x02);
510   // printf("Status Reg%x\n",read_reg());
511   if (cfg->platform->handle_reset)
512     cfg->platform->handle_reset(cfg);
513
514
515   m68k_write_memory_16(INTENA, 0x7FFF);
516   ovl = 1;
517   m68k_write_memory_8(0xbfe201, 0x0001);  // AMIGA OVL
518   m68k_write_memory_8(0xbfe001, 0x0001);  // AMIGA OVL high (ROM@0x0)
519
520   m68k_pulse_reset();
521 }
522
523 int cpu_irq_ack(int level) {
524   printf("cpu irq ack\n");
525   return level;
526 }
527
528 static unsigned int target = 0;
529 static uint8_t send_keypress = 0;
530
531 uint8_t cdtv_dmac_reg_idx_read();
532 void cdtv_dmac_reg_idx_write(uint8_t value);
533 uint32_t cdtv_dmac_read(uint32_t address, uint8_t type);
534 void cdtv_dmac_write(uint32_t address, uint32_t value, uint8_t type);
535
536 #define PLATFORM_CHECK_READ(a) \
537   if (address >= cfg->custom_low && address < cfg->custom_high) { \
538     unsigned int target = 0; \
539     switch(cfg->platform->id) { \
540       case PLATFORM_AMIGA: { \
541         if (address >= PISCSI_OFFSET && address < PISCSI_UPPER) { \
542           return handle_piscsi_read(address, a); \
543         } \
544         if (address >= PINET_OFFSET && address < PINET_UPPER) { \
545           return handle_pinet_read(address, a); \
546         } \
547         if (address >= PIGFX_RTG_BASE && address < PIGFX_UPPER) { \
548           return rtg_read((address & 0x0FFFFFFF), a); \
549         } \
550         if (custom_read_amiga(cfg, address, &target, a) != -1) { \
551           return target; \
552         } \
553         break; \
554       } \
555       default: \
556         break; \
557     } \
558   } \
559   if (ovl || (address >= cfg->mapped_low && address < cfg->mapped_high)) { \
560     if (handle_mapped_read(cfg, address, &target, a) != -1) \
561       return target; \
562   }
563
564 unsigned int m68k_read_memory_8(unsigned int address) {
565   PLATFORM_CHECK_READ(OP_TYPE_BYTE);
566
567   /*if (address >= 0xE90000 && address < 0xF00000) {
568     printf("BYTE read from DMAC @%.8X:", address);
569     uint32_t v = cdtv_dmac_read(address & 0xFFFF, OP_TYPE_BYTE);
570     printf("%.2X\n", v);
571     M68K_END_TIMESLICE;
572     cpu_emulation_running = 0;
573     return v;
574   }*/
575
576   /*if (m68k_get_reg(NULL, M68K_REG_PC) >= 0x080032F0 && m68k_get_reg(NULL, M68K_REG_PC) <= 0x080032F0 + 0x4000) {
577     stop_cpu_emulation(1);
578   }*/
579
580
581   if (address & 0xFF000000)
582     return 0;
583
584   unsigned char result = (unsigned int)read8((uint32_t)address);
585
586   if (mouse_hook_enabled) {
587     if (address == CIAAPRA) {
588       if (mouse_buttons & 0x01) {
589         //mouse_buttons -= 1;
590         return (unsigned int)(result ^ 0x40);
591       }
592
593       return (unsigned int)result;
594     }
595   }
596
597   if (kb_hook_enabled) {
598     if (address == CIAAICR) {
599       if (get_num_kb_queued() && (!send_keypress || send_keypress == 1)) {
600         result |= 0x08;
601         if (!send_keypress)
602           send_keypress = 1;
603       }
604       if (send_keypress == 2) {
605         //result |= 0x02;
606         send_keypress = 0;
607       }
608       return result;
609     }
610     if (address == CIAADAT) {
611       //if (send_keypress) {
612         uint8_t c = 0, t = 0;
613         pop_queued_key(&c, &t);
614         t ^= 0x01;
615         result = ((c << 1) | t) ^ 0xFF;
616         send_keypress = 2;
617         //M68K_SET_IRQ(0);
618       //}
619       return result;
620     }
621   }
622
623   return result;
624 }
625
626 unsigned int m68k_read_memory_16(unsigned int address) {
627   PLATFORM_CHECK_READ(OP_TYPE_WORD);
628
629   /*if (m68k_get_reg(NULL, M68K_REG_PC) >= 0x080032F0 && m68k_get_reg(NULL, M68K_REG_PC) <= 0x080032F0 + 0x4000) {
630     stop_cpu_emulation(1);
631   }*/
632
633   /*if (address >= 0xE90000 && address < 0xF00000) {
634     printf("WORD read from DMAC @%.8X:", address);
635     uint32_t v = cdtv_dmac_read(address & 0xFFFF, OP_TYPE_WORD);
636     printf("%.2X\n", v);
637     M68K_END_TIMESLICE;
638     cpu_emulation_running = 0;
639     return v;
640   }*/
641
642   if (mouse_hook_enabled) {
643     if (address == JOY0DAT) {
644       // Forward mouse valueses to Amyga.
645       unsigned short result = (mouse_dy << 8) | (mouse_dx);
646       return (unsigned int)result;
647     }
648     /*if (address == CIAAPRA) {
649       unsigned short result = (unsigned int)read16((uint32_t)address);
650       if (mouse_buttons & 0x01) {
651         return (unsigned int)(result | 0x40);
652       }
653       else
654           return (unsigned int)result;
655     }*/
656     if (address == POTGOR) {
657       unsigned short result = (unsigned int)read16((uint32_t)address);
658       // bit 1 rmb, bit 2 mmb
659       if (mouse_buttons & 0x06) {
660         return (unsigned int)((result ^ ((mouse_buttons & 0x02) << 9))   // move rmb to bit 10
661                             & (result ^ ((mouse_buttons & 0x04) << 6))); // move mmb to bit 8
662       }
663       return (unsigned int)(result & 0xfffd);
664     }
665   }
666
667   if (address & 0xFF000000)
668     return 0;
669
670   if (address & 0x01) {
671     return ((read8(address) << 8) | read8(address + 1));
672   }
673   return (unsigned int)read16((uint32_t)address);
674 }
675
676 unsigned int m68k_read_memory_32(unsigned int address) {
677   PLATFORM_CHECK_READ(OP_TYPE_LONGWORD);
678
679   /*if (m68k_get_reg(NULL, M68K_REG_PC) >= 0x080032F0 && m68k_get_reg(NULL, M68K_REG_PC) <= 0x080032F0 + 0x4000) {
680     stop_cpu_emulation(1);
681   }*/
682
683   /*if (address >= 0xE90000 && address < 0xF00000) {
684     printf("LONGWORD read from DMAC @%.8X:", address);
685     uint32_t v = cdtv_dmac_read(address & 0xFFFF, OP_TYPE_LONGWORD);
686     printf("%.2X\n", v);
687     M68K_END_TIMESLICE;
688     cpu_emulation_running = 0;
689     return v;
690   }*/
691
692   if (address & 0xFF000000)
693     return 0;
694
695   if (address & 0x01) {
696     uint32_t c = read8(address);
697     c |= (be16toh(read16(address+1)) << 8);
698     c |= (read8(address + 3) << 24);
699     return htobe32(c);
700   }
701   uint16_t a = read16(address);
702   uint16_t b = read16(address + 2);
703   return (a << 16) | b;
704 }
705
706 #define PLATFORM_CHECK_WRITE(a) \
707   if (address >= cfg->custom_low && address < cfg->custom_high) { \
708     switch(cfg->platform->id) { \
709       case PLATFORM_AMIGA: { \
710         if (address >= PISCSI_OFFSET && address < PISCSI_UPPER) { \
711           handle_piscsi_write(address, value, a); \
712         } \
713         if (address >= PINET_OFFSET && address < PINET_UPPER) { \
714           handle_pinet_write(address, value, a); \
715         } \
716         if (address >= PIGFX_RTG_BASE && address < PIGFX_UPPER) { \
717           rtg_write((address & 0x0FFFFFFF), value, a); \
718           return; \
719         } \
720         if (custom_write_amiga(cfg, address, value, a) != -1) { \
721           return; \
722         } \
723         break; \
724       } \
725       default: \
726         break; \
727     } \
728   } \
729   if (address >= cfg->mapped_low && address < cfg->mapped_high) { \
730     if (handle_mapped_write(cfg, address, value, a) != -1) \
731       return; \
732   }
733
734 void m68k_write_memory_8(unsigned int address, unsigned int value) {
735   PLATFORM_CHECK_WRITE(OP_TYPE_BYTE);
736
737   /*if (address >= 0xE90000 && address < 0xF00000) {
738     printf("BYTE write to DMAC @%.8X: %.2X\n", address, value);
739     cdtv_dmac_write(address & 0xFFFF, value, OP_TYPE_BYTE);
740     M68K_END_TIMESLICE;
741     cpu_emulation_running = 0;
742     return;
743   }*/
744
745   if (address == 0xbfe001) {
746     if (ovl != (value & (1 << 0))) {
747       ovl = (value & (1 << 0));
748       printf("OVL:%x\n", ovl);
749     }
750   }
751
752   if (address & 0xFF000000)
753     return;
754
755   write8((uint32_t)address, value);
756   return;
757 }
758
759 void m68k_write_memory_16(unsigned int address, unsigned int value) {
760   PLATFORM_CHECK_WRITE(OP_TYPE_WORD);
761
762   /*if (address >= 0xE90000 && address < 0xF00000) {
763     printf("WORD write to DMAC @%.8X: %.4X\n", address, value);
764     cdtv_dmac_write(address & 0xFFFF, value, OP_TYPE_WORD);
765     M68K_END_TIMESLICE;
766     cpu_emulation_running = 0;
767     return;
768   }*/
769
770   if (address == 0xDFF030) {
771     char *serdat = (char *)&value;
772     // SERDAT word. see amiga dev docs appendix a; upper byte is control codes, and bit 0 is always 1.
773     // ignore this upper byte as it's not viewable data, only display lower byte.
774     printf("%c", serdat[0]);
775   }
776   if (address == 0xDFF09A) {
777     if (!(value & 0x8000)) {
778       if (value & 0x04) {
779         int2_enabled = 0;
780       }
781     }
782     else if (value & 0x04) {
783       int2_enabled = 1;
784     }
785   }
786
787   if (address & 0xFF000000)
788     return;
789
790   if (address & 0x01)
791     printf("Unaligned WORD write!\n");
792
793   write16((uint32_t)address, value);
794   return;
795 }
796
797 void m68k_write_memory_32(unsigned int address, unsigned int value) {
798   PLATFORM_CHECK_WRITE(OP_TYPE_LONGWORD);
799
800   /*if (address >= 0xE90000 && address < 0xF00000) {
801     printf("LONGWORD write to DMAC @%.8X: %.8X\n", address, value);
802     cdtv_dmac_write(address & 0xFFFF, value, OP_TYPE_LONGWORD);
803     M68K_END_TIMESLICE;
804     cpu_emulation_running = 0;
805     return;
806   }*/
807
808   if (address & 0xFF000000)
809     return;
810
811   if (address & 0x01)
812     printf("Unaligned LONGWORD write!\n");
813
814   write16(address, value >> 16);
815   write16(address + 2, value);
816   return;
817 }