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