1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
|
/*
Copyright 2013 Michael Pavone
This file is part of BlastEm.
BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text.
*/
#include "68kinst.h"
#include "m68k_to_x86.h"
#include "z80_to_x86.h"
#include "mem.h"
#include "vdp.h"
#include "render.h"
#include "blastem.h"
#include "gdb_remote.h"
#include "gst.h"
#include "util.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define BLASTEM_VERSION "0.2.0"
#define MCLKS_NTSC 53693175
#define MCLKS_PAL 53203395
#define MCLKS_PER_68K 7
#define MCLKS_PER_YM MCLKS_PER_68K
#define MCLKS_PER_Z80 15
#define MCLKS_PER_PSG (MCLKS_PER_Z80*16)
//TODO: Figure out the exact value for this
#define LINES_NTSC 262
#define LINES_PAL 312
#define MAX_SOUND_CYCLES 100000
uint32_t mclks_per_frame = MCLKS_LINE*LINES_NTSC;
uint16_t cart[CARTRIDGE_WORDS];
uint16_t ram[RAM_WORDS];
uint8_t z80_ram[Z80_RAM_BYTES];
int headless = 0;
int exit_after = 0;
int z80_enabled = 1;
int frame_limit = 0;
tern_node * config;
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#define SMD_HEADER_SIZE 512
#define SMD_MAGIC1 0x03
#define SMD_MAGIC2 0xAA
#define SMD_MAGIC3 0xBB
#define SMD_BLOCK_SIZE 0x4000
int load_smd_rom(long filesize, FILE * f)
{
uint8_t block[SMD_BLOCK_SIZE];
filesize -= SMD_HEADER_SIZE;
fseek(f, SMD_HEADER_SIZE, SEEK_SET);
uint16_t * dst = cart;
while (filesize > 0) {
fread(block, 1, SMD_BLOCK_SIZE, f);
for (uint8_t *low = block, *high = (block+SMD_BLOCK_SIZE/2), *end = block+SMD_BLOCK_SIZE; high < end; high++, low++) {
*(dst++) = *high << 8 | *low;
}
filesize -= SMD_BLOCK_SIZE;
}
return 1;
}
int load_rom(char * filename)
{
uint8_t header[10];
FILE * f = fopen(filename, "rb");
if (!f) {
return 0;
}
fread(header, 1, sizeof(header), f);
fseek(f, 0, SEEK_END);
long filesize = ftell(f);
if (filesize/2 > CARTRIDGE_WORDS) {
//carts bigger than 4MB not currently supported
filesize = CARTRIDGE_WORDS*2;
}
fseek(f, 0, SEEK_SET);
if (header[1] == SMD_MAGIC1 && header[8] == SMD_MAGIC2 && header[9] == SMD_MAGIC3) {
int i;
for (i = 3; i < 8; i++) {
if (header[i] != 0) {
break;
}
}
if (i == 8) {
if (header[2]) {
fprintf(stderr, "%s is a split SMD ROM which is not currently supported", filename);
exit(1);
}
return load_smd_rom(filesize, f);
}
}
fread(cart, 2, filesize/2, f);
fclose(f);
for(unsigned short * cur = cart; cur - cart < (filesize/2); ++cur)
{
*cur = (*cur >> 8) | (*cur << 8);
}
//TODO: Mirror ROM
return 1;
}
uint16_t read_dma_value(uint32_t address)
{
//addresses here are word addresses (i.e. bit 0 corresponds to A1), so no need to do div by 2
if (address < 0x200000) {
return cart[address];
} else if(address >= 0x700000) {
return ram[address & 0x7FFF];
}
//TODO: Figure out what happens when you try to DMA from weird adresses like IO or banked Z80 area
return 0;
}
//TODO: Make these dependent on the video mode
//#define VINT_CYCLE ((MCLKS_LINE * 225 + (148 + 40) * 4)/MCLKS_PER_68K)
#define ZVINT_CYCLE ((MCLKS_LINE * 225 + (148 + 40) * 4)/MCLKS_PER_Z80)
//#define VINT_CYCLE ((MCLKS_LINE * 226)/MCLKS_PER_68K)
//#define ZVINT_CYCLE ((MCLKS_LINE * 226)/MCLKS_PER_Z80)
void adjust_int_cycle(m68k_context * context, vdp_context * v_context)
{
context->int_cycle = CYCLE_NEVER;
if ((context->status & 0x7) < 6) {
uint32_t next_vint = vdp_next_vint(v_context);
if (next_vint != CYCLE_NEVER) {
next_vint /= MCLKS_PER_68K;
context->int_cycle = next_vint;
context->int_num = 6;
}
if ((context->status & 0x7) < 4) {
uint32_t next_hint = vdp_next_hint(v_context);
if (next_hint != CYCLE_NEVER) {
next_hint /= MCLKS_PER_68K;
if (next_hint < context->int_cycle) {
context->int_cycle = next_hint;
context->int_num = 4;
}
}
}
}
context->target_cycle = context->int_cycle < context->sync_cycle ? context->int_cycle : context->sync_cycle;
/*printf("Cyc: %d, Trgt: %d, Int Cyc: %d, Int: %d, Mask: %X, V: %d, H: %d, HICount: %d, HReg: %d, Line: %d\n",
context->current_cycle, context->target_cycle, context->int_cycle, context->int_num, (context->status & 0x7),
v_context->regs[REG_MODE_2] & 0x20, v_context->regs[REG_MODE_1] & 0x10, v_context->hint_counter, v_context->regs[REG_HINT], v_context->cycles / MCLKS_LINE);*/
}
int break_on_sync = 0;
int save_state = 0;
uint8_t reset = 1;
uint8_t need_reset = 0;
uint8_t busreq = 0;
uint8_t busack = 0;
uint32_t busack_cycle = CYCLE_NEVER;
uint8_t new_busack = 0;
//#define DO_DEBUG_PRINT
#ifdef DO_DEBUG_PRINT
#define dprintf printf
#define dputs puts
#else
#define dprintf
#define dputs
#endif
#define Z80_VINT_DURATION 128
void sync_z80(z80_context * z_context, uint32_t mclks)
{
if (z80_enabled && !reset && !busreq) {
genesis_context * gen = z_context->system;
z_context->sync_cycle = mclks / MCLKS_PER_Z80;
if (z_context->current_cycle < z_context->sync_cycle) {
if (need_reset) {
z80_reset(z_context);
need_reset = 0;
}
uint32_t vint_cycle = vdp_next_vint_z80(gen->vdp) / MCLKS_PER_Z80;
while (z_context->current_cycle < z_context->sync_cycle) {
if (z_context->iff1 && z_context->current_cycle < (vint_cycle + Z80_VINT_DURATION)) {
z_context->int_cycle = vint_cycle < z_context->int_enable_cycle ? z_context->int_enable_cycle : vint_cycle;
}
z_context->target_cycle = z_context->sync_cycle < z_context->int_cycle ? z_context->sync_cycle : z_context->int_cycle;
dprintf("Running Z80 from cycle %d to cycle %d. Native PC: %p\n", z_context->current_cycle, z_context->sync_cycle, z_context->native_pc);
z80_run(z_context);
dprintf("Z80 ran to cycle %d\n", z_context->current_cycle);
}
}
} else {
z_context->current_cycle = mclks / MCLKS_PER_Z80;
}
}
void sync_sound(genesis_context * gen, uint32_t target)
{
//printf("YM | Cycle: %d, bpos: %d, PSG | Cycle: %d, bpos: %d\n", gen->ym->current_cycle, gen->ym->buffer_pos, gen->psg->cycles, gen->psg->buffer_pos * 2);
while (target > gen->psg->cycles && target - gen->psg->cycles > MAX_SOUND_CYCLES) {
uint32_t cur_target = gen->psg->cycles + MAX_SOUND_CYCLES;
//printf("Running PSG to cycle %d\n", cur_target);
psg_run(gen->psg, cur_target);
//printf("Running YM-2612 to cycle %d\n", cur_target);
ym_run(gen->ym, cur_target);
}
psg_run(gen->psg, target);
ym_run(gen->ym, target);
//printf("Target: %d, YM bufferpos: %d, PSG bufferpos: %d\n", target, gen->ym->buffer_pos, gen->psg->buffer_pos * 2);
}
uint32_t frame=0;
m68k_context * sync_components(m68k_context * context, uint32_t address)
{
//TODO: Handle sync targets smaller than a single frame
genesis_context * gen = context->system;
vdp_context * v_context = gen->vdp;
z80_context * z_context = gen->z80;
uint32_t mclks = context->current_cycle * MCLKS_PER_68K;
sync_z80(z_context, mclks);
if (mclks >= mclks_per_frame) {
sync_sound(gen, mclks);
gen->ym->current_cycle -= mclks_per_frame;
gen->psg->cycles -= mclks_per_frame;
if (gen->ym->write_cycle != CYCLE_NEVER) {
gen->ym->write_cycle = gen->ym->write_cycle >= mclks_per_frame/MCLKS_PER_68K ? gen->ym->write_cycle - mclks_per_frame/MCLKS_PER_68K : 0;
}
//printf("reached frame end | 68K Cycles: %d, MCLK Cycles: %d\n", context->current_cycle, mclks);
vdp_run_context(v_context, mclks_per_frame);
if (!headless) {
break_on_sync |= wait_render_frame(v_context, frame_limit);
} else if(exit_after){
--exit_after;
if (!exit_after) {
exit(0);
}
}
frame++;
mclks -= mclks_per_frame;
vdp_adjust_cycles(v_context, mclks_per_frame);
io_adjust_cycles(gen->ports, context->current_cycle, mclks_per_frame/MCLKS_PER_68K);
io_adjust_cycles(gen->ports+1, context->current_cycle, mclks_per_frame/MCLKS_PER_68K);
io_adjust_cycles(gen->ports+2, context->current_cycle, mclks_per_frame/MCLKS_PER_68K);
if (busack_cycle != CYCLE_NEVER) {
if (busack_cycle > mclks_per_frame/MCLKS_PER_68K) {
busack_cycle -= mclks_per_frame/MCLKS_PER_68K;
} else {
busack_cycle = CYCLE_NEVER;
busack = new_busack;
}
}
context->current_cycle -= mclks_per_frame/MCLKS_PER_68K;
if (z_context->current_cycle >= mclks_per_frame/MCLKS_PER_Z80) {
z_context->current_cycle -= mclks_per_frame/MCLKS_PER_Z80;
} else {
z_context->current_cycle = 0;
}
if (mclks) {
vdp_run_context(v_context, mclks);
}
} else {
//printf("running VDP for %d cycles\n", mclks - v_context->cycles);
vdp_run_context(v_context, mclks);
sync_sound(gen, mclks);
}
if (context->int_ack) {
vdp_int_ack(v_context, context->int_ack);
context->int_ack = 0;
}
adjust_int_cycle(context, v_context);
if (address) {
if (break_on_sync) {
break_on_sync = 0;
debugger(context, address);
}
if (save_state) {
save_state = 0;
while (!z_context->pc)
{
sync_z80(z_context, z_context->current_cycle * MCLKS_PER_Z80 + MCLKS_PER_Z80);
}
save_gst(gen, "savestate.gst", address);
}
}
return context;
}
m68k_context * vdp_port_write(uint32_t vdp_port, m68k_context * context, uint16_t value)
{
if (vdp_port & 0x2700E0) {
printf("machine freeze due to write to address %X\n", 0xC00000 | vdp_port);
exit(1);
}
vdp_port &= 0x1F;
//printf("vdp_port write: %X, value: %X, cycle: %d\n", vdp_port, value, context->current_cycle);
sync_components(context, 0);
vdp_context * v_context = context->video_context;
genesis_context * gen = context->system;
if (vdp_port < 0x10) {
int blocked;
uint32_t before_cycle = v_context->cycles;
if (vdp_port < 4) {
gen->bus_busy = 1;
while (vdp_data_port_write(v_context, value) < 0) {
while(v_context->flags & FLAG_DMA_RUN) {
vdp_run_dma_done(v_context, mclks_per_frame);
if (v_context->cycles >= mclks_per_frame) {
if (!headless) {
//printf("reached frame end | 68K Cycles: %d, MCLK Cycles: %d\n", context->current_cycle, v_context->cycles);
wait_render_frame(v_context, frame_limit);
} else if(exit_after){
--exit_after;
if (!exit_after) {
exit(0);
}
}
vdp_adjust_cycles(v_context, mclks_per_frame);
genesis_context * gen = context->system;
io_adjust_cycles(gen->ports, v_context->cycles/MCLKS_PER_68K, mclks_per_frame/MCLKS_PER_68K);
io_adjust_cycles(gen->ports+1, v_context->cycles/MCLKS_PER_68K, mclks_per_frame/MCLKS_PER_68K);
io_adjust_cycles(gen->ports+2, v_context->cycles/MCLKS_PER_68K, mclks_per_frame/MCLKS_PER_68K);
if (busack_cycle != CYCLE_NEVER) {
if (busack_cycle > mclks_per_frame/MCLKS_PER_68K) {
busack_cycle -= mclks_per_frame/MCLKS_PER_68K;
} else {
busack_cycle = CYCLE_NEVER;
busack = new_busack;
}
}
}
}
//context->current_cycle = v_context->cycles / MCLKS_PER_68K;
}
} else if(vdp_port < 8) {
gen->bus_busy = 1;
blocked = vdp_control_port_write(v_context, value);
if (blocked) {
while (blocked) {
while(v_context->flags & FLAG_DMA_RUN) {
vdp_run_dma_done(v_context, mclks_per_frame);
if (v_context->cycles >= mclks_per_frame) {
if (!headless) {
wait_render_frame(v_context, frame_limit);
} else if(exit_after){
--exit_after;
if (!exit_after) {
exit(0);
}
}
vdp_adjust_cycles(v_context, mclks_per_frame);
genesis_context * gen = context->system;
io_adjust_cycles(gen->ports, v_context->cycles/MCLKS_PER_68K, mclks_per_frame/MCLKS_PER_68K);
io_adjust_cycles(gen->ports+1, v_context->cycles/MCLKS_PER_68K, mclks_per_frame/MCLKS_PER_68K);
io_adjust_cycles(gen->ports+2, v_context->cycles/MCLKS_PER_68K, mclks_per_frame/MCLKS_PER_68K);
if (busack_cycle != CYCLE_NEVER) {
if (busack_cycle > mclks_per_frame/MCLKS_PER_68K) {
busack_cycle -= mclks_per_frame/MCLKS_PER_68K;
} else {
busack_cycle = CYCLE_NEVER;
busack = new_busack;
}
}
}
}
if (blocked < 0) {
blocked = vdp_control_port_write(v_context, value);
} else {
blocked = 0;
}
}
} else {
adjust_int_cycle(context, v_context);
}
} else {
printf("Illegal write to HV Counter port %X\n", vdp_port);
exit(1);
}
if (v_context->cycles != before_cycle) {
//printf("68K paused for %d (%d) cycles at cycle %d (%d) for write\n", v_context->cycles / MCLKS_PER_68K - context->current_cycle, v_context->cycles - before_cycle, context->current_cycle, before_cycle);
context->current_cycle = v_context->cycles / MCLKS_PER_68K;
}
} else if (vdp_port < 0x18) {
sync_sound(gen, context->current_cycle * MCLKS_PER_68K);
psg_write(gen->psg, value);
} else {
//TODO: Implement undocumented test register(s)
}
if (gen->bus_busy)
{
//Lock the Z80 out of the bus until the VDP access is complete
sync_z80(gen->z80, v_context->cycles);
gen->bus_busy = 0;
}
return context;
}
m68k_context * vdp_port_write_b(uint32_t vdp_port, m68k_context * context, uint8_t value)
{
return vdp_port_write(vdp_port, context, vdp_port < 0x10 ? value | value << 8 : ((vdp_port & 1) ? value : 0));
}
z80_context * z80_vdp_port_write(uint16_t vdp_port, z80_context * context, uint8_t value)
{
genesis_context * gen = context->system;
if (vdp_port & 0xE0) {
printf("machine freeze due to write to Z80 address %X\n", 0x7F00 | vdp_port);
exit(1);
}
if (vdp_port < 0x10) {
//These probably won't currently interact well with the 68K accessing the VDP
vdp_run_context(gen->vdp, context->current_cycle * MCLKS_PER_Z80);
if (vdp_port < 4) {
vdp_data_port_write(gen->vdp, value << 8 | value);
} else if (vdp_port < 8) {
vdp_control_port_write(gen->vdp, value << 8 | value);
} else {
printf("Illegal write to HV Counter port %X\n", vdp_port);
exit(1);
}
} else if (vdp_port < 0x18) {
sync_sound(gen, context->current_cycle * MCLKS_PER_Z80);
psg_write(gen->psg, value);
} else {
vdp_test_port_write(gen->vdp, value);
}
return context;
}
uint16_t vdp_port_read(uint32_t vdp_port, m68k_context * context)
{
if (vdp_port & 0x2700E0) {
printf("machine freeze due to read from address %X\n", 0xC00000 | vdp_port);
exit(1);
}
vdp_port &= 0x1F;
uint16_t value;
sync_components(context, 0);
vdp_context * v_context = context->video_context;
uint32_t before_cycle = v_context->cycles;
if (vdp_port < 0x10) {
if (vdp_port < 4) {
value = vdp_data_port_read(v_context);
} else if(vdp_port < 8) {
value = vdp_control_port_read(v_context);
} else {
value = vdp_hv_counter_read(v_context);
//printf("HV Counter: %X at cycle %d\n", value, v_context->cycles);
}
} else if (vdp_port < 0x18){
printf("Illegal read from PSG port %X\n", vdp_port);
exit(1);
} else {
value = vdp_test_port_read(v_context);
}
if (v_context->cycles != before_cycle) {
//printf("68K paused for %d (%d) cycles at cycle %d (%d) for read\n", v_context->cycles / MCLKS_PER_68K - context->current_cycle, v_context->cycles - before_cycle, context->current_cycle, before_cycle);
context->current_cycle = v_context->cycles / MCLKS_PER_68K;
}
return value;
}
uint8_t vdp_port_read_b(uint32_t vdp_port, m68k_context * context)
{
uint16_t value = vdp_port_read(vdp_port, context);
if (vdp_port & 1) {
return value;
} else {
return value >> 8;
}
}
uint32_t zram_counter = 0;
#define Z80_ACK_DELAY 3
#define Z80_BUSY_DELAY 1//TODO: Find the actual value for this
#define Z80_REQ_BUSY 1
#define Z80_REQ_ACK 0
#define Z80_RES_BUSACK reset
m68k_context * io_write(uint32_t location, m68k_context * context, uint8_t value)
{
genesis_context * gen = context->system;
if (location < 0x10000) {
if (busack_cycle <= context->current_cycle) {
busack = new_busack;
busack_cycle = CYCLE_NEVER;
}
if (!(busack || reset)) {
location &= 0x7FFF;
if (location < 0x4000) {
z80_ram[location & 0x1FFF] = value;
z80_handle_code_write(location & 0x1FFF, gen->z80);
} else if (location < 0x6000) {
sync_sound(gen, context->current_cycle * MCLKS_PER_68K);
if (location & 1) {
ym_data_write(gen->ym, value);
} else if(location & 2) {
ym_address_write_part2(gen->ym, value);
} else {
ym_address_write_part1(gen->ym, value);
}
} else if (location == 0x6000) {
gen->z80->bank_reg = (gen->z80->bank_reg >> 1 | value << 8) & 0x1FF;
if (gen->z80->bank_reg < 0x80) {
gen->z80->mem_pointers[1] = (gen->z80->bank_reg << 15) + ((char *)gen->z80->mem_pointers[2]);
} else {
gen->z80->mem_pointers[1] = NULL;
}
} else {
printf("68K write to unhandled Z80 address %X\n", location);
exit(1);
}
}
} else {
location &= 0x1FFF;
if (location < 0x100) {
switch(location/2)
{
case 0x1:
io_data_write(gen->ports, value, context->current_cycle);
break;
case 0x2:
io_data_write(gen->ports+1, value, context->current_cycle);
break;
case 0x3:
io_data_write(gen->ports+2, value, context->current_cycle);
break;
case 0x4:
gen->ports[0].control = value;
break;
case 0x5:
gen->ports[1].control = value;
break;
case 0x6:
gen->ports[2].control = value;
break;
}
} else {
if (location == 0x1100) {
if (busack_cycle <= context->current_cycle) {
busack = new_busack;
busack_cycle = CYCLE_NEVER;
}
if (value & 1) {
dputs("bus requesting Z80");
if(!reset && !busreq) {
sync_z80(gen->z80, context->current_cycle * MCLKS_PER_68K + Z80_ACK_DELAY*MCLKS_PER_Z80);
busack_cycle = (gen->z80->current_cycle * MCLKS_PER_Z80) / MCLKS_PER_68K;//context->current_cycle + Z80_ACK_DELAY;
new_busack = Z80_REQ_ACK;
}
busreq = 1;
} else {
sync_z80(gen->z80, context->current_cycle * MCLKS_PER_68K);
if (busreq) {
dputs("releasing z80 bus");
#ifdef DO_DEBUG_PRINT
char fname[20];
sprintf(fname, "zram-%d", zram_counter++);
FILE * f = fopen(fname, "wb");
fwrite(z80_ram, 1, sizeof(z80_ram), f);
fclose(f);
#endif
busack_cycle = ((gen->z80->current_cycle + Z80_BUSY_DELAY) * MCLKS_PER_Z80) / MCLKS_PER_68K;
new_busack = Z80_REQ_BUSY;
busreq = 0;
}
//busack_cycle = CYCLE_NEVER;
//busack = Z80_REQ_BUSY;
}
} else if (location == 0x1200) {
sync_z80(gen->z80, context->current_cycle * MCLKS_PER_68K);
if (value & 1) {
if (reset && busreq) {
new_busack = 0;
busack_cycle = ((gen->z80->current_cycle + Z80_ACK_DELAY) * MCLKS_PER_Z80) / MCLKS_PER_68K;//context->current_cycle + Z80_ACK_DELAY;
}
//TODO: Deal with the scenario in which reset is not asserted long enough
if (reset) {
need_reset = 1;
//TODO: Add necessary delay between release of reset and start of execution
gen->z80->current_cycle = (context->current_cycle * MCLKS_PER_68K) / MCLKS_PER_Z80 + 16;
}
reset = 0;
} else {
reset = 1;
}
}
}
}
return context;
}
m68k_context * io_write_w(uint32_t location, m68k_context * context, uint16_t value)
{
if (location < 0x10000 || (location & 0x1FFF) >= 0x100) {
return io_write(location, context, value >> 8);
} else {
return io_write(location, context, value);
}
}
#define USA 0x80
#define JAP 0x00
#define EUR 0xC0
#define NO_DISK 0x20
uint8_t version_reg = NO_DISK | USA;
uint8_t io_read(uint32_t location, m68k_context * context)
{
uint8_t value;
genesis_context *gen = context->system;
if (location < 0x10000) {
if (busack_cycle <= context->current_cycle) {
busack = new_busack;
busack_cycle = CYCLE_NEVER;
}
if (!(busack==Z80_REQ_BUSY || reset)) {
location &= 0x7FFF;
if (location < 0x4000) {
value = z80_ram[location & 0x1FFF];
} else if (location < 0x6000) {
sync_sound(gen, context->current_cycle * MCLKS_PER_68K);
value = ym_read_status(gen->ym);
} else {
value = 0xFF;
}
} else {
value = 0xFF;
}
} else {
location &= 0x1FFF;
if (location < 0x100) {
switch(location/2)
{
case 0x0:
//version bits should be 0 for now since we're not emulating TMSS
value = version_reg;
break;
case 0x1:
value = io_data_read(gen->ports, context->current_cycle);
break;
case 0x2:
value = io_data_read(gen->ports+1, context->current_cycle);
break;
case 0x3:
value = io_data_read(gen->ports+2, context->current_cycle);
break;
case 0x4:
value = gen->ports[0].control;
break;
case 0x5:
value = gen->ports[1].control;
break;
case 0x6:
value = gen->ports[2].control;
break;
default:
value = 0xFF;
}
} else {
if (location == 0x1100) {
if (busack_cycle <= context->current_cycle) {
busack = new_busack;
busack_cycle = CYCLE_NEVER;
}
value = Z80_RES_BUSACK || busack;
dprintf("Byte read of BUSREQ returned %d @ %d (reset: %d, busack: %d, busack_cycle %d)\n", value, context->current_cycle, reset, busack, busack_cycle);
} else if (location == 0x1200) {
value = !reset;
} else {
value = 0xFF;
printf("Byte read of unknown IO location: %X\n", location);
}
}
}
return value;
}
uint16_t io_read_w(uint32_t location, m68k_context * context)
{
uint16_t value = io_read(location, context);
if (location < 0x10000 || (location & 0x1FFF) < 0x100) {
value = value | (value << 8);
} else {
value <<= 8;
}
return value;
}
z80_context * z80_write_ym(uint16_t location, z80_context * context, uint8_t value)
{
genesis_context * gen = context->system;
sync_sound(gen, context->current_cycle * MCLKS_PER_Z80);
if (location & 1) {
ym_data_write(gen->ym, value);
} else if (location & 2) {
ym_address_write_part2(gen->ym, value);
} else {
ym_address_write_part1(gen->ym, value);
}
return context;
}
uint8_t z80_read_ym(uint16_t location, z80_context * context)
{
genesis_context * gen = context->system;
sync_sound(gen, context->current_cycle * MCLKS_PER_Z80);
return ym_read_status(gen->ym);
}
uint16_t read_sram_w(uint32_t address, m68k_context * context)
{
genesis_context * gen = context->system;
address &= gen->save_ram_mask;
switch(gen->save_flags)
{
case RAM_FLAG_BOTH:
return gen->save_ram[address] << 8 | gen->save_ram[address+1];
case RAM_FLAG_EVEN:
return gen->save_ram[address >> 1] << 8 | 0xFF;
case RAM_FLAG_ODD:
return gen->save_ram[address >> 1] | 0xFF00;
}
return 0xFFFF;//We should never get here
}
uint8_t read_sram_b(uint32_t address, m68k_context * context)
{
genesis_context * gen = context->system;
address &= gen->save_ram_mask;
switch(gen->save_flags)
{
case RAM_FLAG_BOTH:
return gen->save_ram[address];
case RAM_FLAG_EVEN:
if (address & 1) {
return 0xFF;
} else {
return gen->save_ram[address >> 1];
}
case RAM_FLAG_ODD:
if (address & 1) {
return gen->save_ram[address >> 1];
} else {
return 0xFF;
}
}
return 0xFF;//We should never get here
}
m68k_context * write_sram_area_w(uint32_t address, m68k_context * context, uint16_t value)
{
genesis_context * gen = context->system;
if ((gen->bank_regs[0] & 0x3) == 1) {
address &= gen->save_ram_mask;
switch(gen->save_flags)
{
case RAM_FLAG_BOTH:
gen->save_ram[address] = value >> 8;
gen->save_ram[address+1] = value;
break;
case RAM_FLAG_EVEN:
gen->save_ram[address >> 1] = value >> 8;
break;
case RAM_FLAG_ODD:
gen->save_ram[address >> 1] = value;
break;
}
}
return context;
}
m68k_context * write_sram_area_b(uint32_t address, m68k_context * context, uint8_t value)
{
genesis_context * gen = context->system;
if ((gen->bank_regs[0] & 0x3) == 1) {
address &= gen->save_ram_mask;
switch(gen->save_flags)
{
case RAM_FLAG_BOTH:
gen->save_ram[address] = value;
break;
case RAM_FLAG_EVEN:
if (!(address & 1)) {
gen->save_ram[address >> 1] = value;
}
break;
case RAM_FLAG_ODD:
if (address & 1) {
gen->save_ram[address >> 1] = value;
}
break;
}
}
return context;
}
m68k_context * write_bank_reg_w(uint32_t address, m68k_context * context, uint16_t value)
{
genesis_context * gen = context->system;
address &= 0xE;
address >>= 1;
gen->bank_regs[address] = value;
if (!address) {
if (value & 1) {
context->mem_pointers[2] = NULL;
} else {
context->mem_pointers[2] = cart + 0x200000/2;
}
}
return context;
}
m68k_context * write_bank_reg_b(uint32_t address, m68k_context * context, uint8_t value)
{
if (address & 1) {
genesis_context * gen = context->system;
address &= 0xE;
address >>= 1;
gen->bank_regs[address] = value;
if (!address) {
if (value & 1) {
context->mem_pointers[2] = NULL;
} else {
context->mem_pointers[2] = cart + 0x200000/2;
}
}
}
return context;
}
void set_speed_percent(genesis_context * context, uint32_t percent)
{
uint32_t old_clock = context->master_clock;
context->master_clock = ((uint64_t)context->normal_clock * (uint64_t)percent) / 100;
while (context->ym->current_cycle != context->psg->cycles) {
sync_sound(context, context->psg->cycles + MCLKS_PER_PSG);
}
ym_adjust_master_clock(context->ym, context->master_clock);
psg_adjust_master_clock(context->psg, context->master_clock);
}
#define ROM_END 0x1A4
#define RAM_ID 0x1B0
#define RAM_FLAGS 0x1B2
#define RAM_START 0x1B4
#define RAM_END 0x1B8
#define MAX_MAP_CHUNKS (4+7+1)
#define RAM_FLAG_MASK 0x1800
const memmap_chunk static_map[] = {
{0, 0x400000, 0xFFFFFF, 0, MMAP_READ, cart,
NULL, NULL, NULL, NULL},
{0xE00000, 0x1000000, 0xFFFF, 0, MMAP_READ | MMAP_WRITE | MMAP_CODE, ram,
NULL, NULL, NULL, NULL},
{0xC00000, 0xE00000, 0x1FFFFF, 0, 0, NULL,
(read_16_fun)vdp_port_read, (write_16_fun)vdp_port_write,
(read_8_fun)vdp_port_read_b, (write_8_fun)vdp_port_write_b},
{0xA00000, 0xA12000, 0x1FFFF, 0, 0, NULL,
(read_16_fun)io_read_w, (write_16_fun)io_write_w,
(read_8_fun)io_read, (write_8_fun)io_write}
};
char * sram_filename;
genesis_context * genesis;
void save_sram()
{
FILE * f = fopen(sram_filename, "wb");
if (!f) {
fprintf(stderr, "Failed to open SRAM file %s for writing\n", sram_filename);
return;
}
uint32_t size = genesis->save_ram_mask+1;
if (genesis->save_flags != RAM_FLAG_BOTH) {
size/= 2;
}
fwrite(genesis->save_ram, 1, size, f);
fclose(f);
printf("Saved SRAM to %s\n", sram_filename);
}
void init_run_cpu(genesis_context * gen, FILE * address_log, char * statefile, uint8_t * debugger)
{
m68k_context context;
x86_68k_options opts;
gen->m68k = &context;
memmap_chunk memmap[MAX_MAP_CHUNKS];
uint32_t num_chunks;
void * initial_mapped = NULL;
gen->save_ram = NULL;
//TODO: Handle carts larger than 4MB
//TODO: Handle non-standard mappers
uint32_t size;
if ((cart[RAM_ID/2] & 0xFF) == 'A' && (cart[RAM_ID/2] >> 8) == 'R') {
//Cart has save RAM
uint32_t rom_end = ((cart[ROM_END/2] << 16) | cart[ROM_END/2+1]) + 1;
uint32_t ram_start = (cart[RAM_START/2] << 16) | cart[RAM_START/2+1];
uint32_t ram_end = (cart[RAM_END/2] << 16) | cart[RAM_END/2+1];
uint16_t ram_flags = cart[RAM_FLAGS/2];
gen->save_flags = ram_flags & RAM_FLAG_MASK;
memset(memmap, 0, sizeof(memmap_chunk)*2);
if (ram_start >= rom_end) {
memmap[0].end = rom_end;
memmap[0].mask = 0xFFFFFF;
memmap[0].flags = MMAP_READ;
memmap[0].buffer = cart;
ram_start &= 0xFFFFFE;
ram_end |= 1;
memmap[1].start = ram_start;
gen->save_ram_mask = memmap[1].mask = ram_end-ram_start;
ram_end += 1;
memmap[1].end = ram_end;
memmap[1].flags = MMAP_READ | MMAP_WRITE;
size = ram_end-ram_start;
if ((ram_flags & RAM_FLAG_MASK) == RAM_FLAG_ODD) {
memmap[1].flags |= MMAP_ONLY_ODD;
size /= 2;
} else if((ram_flags & RAM_FLAG_MASK) == RAM_FLAG_EVEN) {
memmap[1].flags |= MMAP_ONLY_EVEN;
size /= 2;
}
memmap[1].buffer = gen->save_ram = malloc(size);
memcpy(memmap+2, static_map+1, sizeof(static_map)-sizeof(static_map[0]));
num_chunks = sizeof(static_map)/sizeof(memmap_chunk)+1;
} else {
//Assume the standard Sega mapper for now
memmap[0].end = 0x200000;
memmap[0].mask = 0xFFFFFF;
memmap[0].flags = MMAP_READ;
memmap[0].buffer = cart;
memmap[1].start = 0x200000;
memmap[1].end = 0x400000;
memmap[1].mask = 0x1FFFFF;
ram_start &= 0xFFFFFE;
ram_end |= 1;
gen->save_ram_mask = ram_end-ram_start;
memmap[1].flags = MMAP_READ | MMAP_PTR_IDX | MMAP_FUNC_NULL;
memmap[1].ptr_index = 2;
memmap[1].read_16 = (read_16_fun)read_sram_w;//these will only be called when mem_pointers[2] == NULL
memmap[1].read_8 = (read_8_fun)read_sram_b;
memmap[1].write_16 = (write_16_fun)write_sram_area_w;//these will be called all writes to the area
memmap[1].write_8 = (write_8_fun)write_sram_area_b;
memcpy(memmap+2, static_map+1, sizeof(static_map)-sizeof(static_map[0]));
num_chunks = sizeof(static_map)/sizeof(memmap_chunk)+1;
memset(memmap+num_chunks, 0, sizeof(memmap[num_chunks]));
memmap[num_chunks].start = 0xA13000;
memmap[num_chunks].end = 0xA13100;
memmap[num_chunks].mask = 0xFF;
memmap[num_chunks].write_16 = (write_16_fun)write_bank_reg_w;
memmap[num_chunks].write_8 = (write_8_fun)write_bank_reg_b;
num_chunks++;
ram_end++;
size = ram_end-ram_start;
if ((ram_flags & RAM_FLAG_MASK) != RAM_FLAG_BOTH) {
size /= 2;
}
gen->save_ram = malloc(size);
memmap[1].buffer = initial_mapped = cart + 0x200000/2;
}
} else {
memcpy(memmap, static_map, sizeof(static_map));
num_chunks = sizeof(static_map)/sizeof(memmap_chunk);
}
if (gen->save_ram) {
memset(gen->save_ram, 0, size);
FILE * f = fopen(sram_filename, "rb");
if (f) {
uint32_t read = fread(gen->save_ram, 1, size, f);
fclose(f);
if (read > 0) {
printf("Loaded SRAM from %s\n", sram_filename);
}
}
atexit(save_sram);
}
init_x86_68k_opts(&opts, memmap, num_chunks);
opts.address_log = address_log;
init_68k_context(&context, opts.native_code_map, &opts);
context.video_context = gen->vdp;
context.system = gen;
//cartridge ROM
context.mem_pointers[0] = cart;
context.target_cycle = context.sync_cycle = mclks_per_frame/MCLKS_PER_68K;
//work RAM
context.mem_pointers[1] = ram;
//save RAM/map
context.mem_pointers[2] = initial_mapped;
context.mem_pointers[3] = (uint16_t *)gen->save_ram;
uint32_t address;
address = cart[2] << 16 | cart[3];
translate_m68k_stream(address, &context);
if (statefile) {
uint32_t pc = load_gst(gen, statefile);
if (!pc) {
fprintf(stderr, "Failed to load save state %s\n", statefile);
exit(1);
}
printf("Loaded %s\n", statefile);
if (debugger) {
insert_breakpoint(&context, pc, debugger);
}
adjust_int_cycle(gen->m68k, gen->vdp);
gen->z80->native_pc = z80_get_native_address_trans(gen->z80, gen->z80->pc);
start_68k_context(&context, pc);
} else {
if (debugger) {
insert_breakpoint(&context, address, debugger);
}
m68k_reset(&context);
}
}
char title[64];
#define TITLE_START 0x150
#define TITLE_END (TITLE_START+48)
void update_title()
{
uint16_t *last = cart + TITLE_END/2 - 1;
while(last > cart + TITLE_START/2 && *last == 0x2020)
{
last--;
}
uint16_t *start = cart + TITLE_START/2;
char *cur = title;
char last_char = ' ';
for (; start != last; start++)
{
if ((last_char != ' ' || (*start >> 8) != ' ') && (*start >> 8) < 0x80) {
*(cur++) = *start >> 8;
last_char = *start >> 8;
}
if (last_char != ' ' || (*start & 0xFF) != ' ' && (*start & 0xFF) < 0x80) {
*(cur++) = *start;
last_char = *start & 0xFF;
}
}
*(cur++) = *start >> 8;
if ((*start & 0xFF) != ' ') {
*(cur++) = *start;
}
strcpy(cur, " - BlastEm");
}
#define REGION_START 0x1F0
int detect_specific_region(char region)
{
return (cart[REGION_START/2] & 0xFF) == region || (cart[REGION_START/2] >> 8) == region || (cart[REGION_START/2+1] & 0xFF) == region;
}
void detect_region()
{
if (detect_specific_region('U')|| detect_specific_region('B') || detect_specific_region('4')) {
version_reg = NO_DISK | USA;
} else if (detect_specific_region('J')) {
version_reg = NO_DISK | JAP;
} else if (detect_specific_region('E') || detect_specific_region('A')) {
version_reg = NO_DISK | EUR;
} else {
char * def_region = tern_find_ptr(config, "default_region");
if (def_region) {
switch(*def_region)
{
case 'j':
case 'J':
version_reg = NO_DISK | JAP;
break;
case 'u':
case 'U':
version_reg = NO_DISK | USA;
break;
case 'e':
case 'E':
version_reg = NO_DISK | EUR;
break;
}
}
}
}
int main(int argc, char ** argv)
{
if (argc < 2) {
fputs("Usage: blastem [OPTIONS] ROMFILE [WIDTH] [HEIGHT]\n", stderr);
return 1;
}
set_exe_str(argv[0]);
config = load_config();
detect_region();
int width = -1;
int height = -1;
int debug = 0;
int ym_log = 0;
int loaded = 0;
uint8_t force_version = 0;
char * romfname = NULL;
FILE *address_log = NULL;
char * statefile = NULL;
uint8_t * debuggerfun = NULL;
uint8_t fullscreen = 0, use_gl = 1;
for (int i = 1; i < argc; i++) {
if (argv[i][0] == '-') {
switch(argv[i][1]) {
case 'b':
i++;
if (i >= argc) {
fputs("-b must be followed by a frame count\n", stderr);
return 1;
}
headless = 1;
exit_after = atoi(argv[i]);
break;
case 'd':
debuggerfun = (uint8_t *)debugger;
break;
case 'D':
gdb_remote_init();
debuggerfun = (uint8_t *)gdb_debug_enter;
break;
case 'f':
fullscreen = 1;
break;
case 'g':
use_gl = 0;
break;
case 'l':
address_log = fopen("address.log", "w");
break;
case 'v':
printf("blastem %s\n", BLASTEM_VERSION);
return 0;
break;
case 'n':
z80_enabled = 0;
break;
case 'r':
i++;
if (i >= argc) {
fputs("-r must be followed by region (J, U or E)\n", stderr);
return 1;
}
switch (argv[i][0])
{
case 'j':
case 'J':
force_version = NO_DISK | JAP;
break;
case 'u':
case 'U':
force_version = NO_DISK | USA;
break;
case 'e':
case 'E':
force_version = NO_DISK | EUR;
break;
default:
fprintf(stderr, "'%c' is not a valid region character for the -r option\n", argv[i][0]);
return 1;
}
break;
case 's':
i++;
if (i >= argc) {
fputs("-s must be followed by a savestate filename\n", stderr);
return 1;
}
statefile = argv[i];
break;
case 'y':
ym_log = 1;
break;
case 'h':
puts(
"Usage: blastem [OPTIONS] ROMFILE [WIDTH] [HEIGHT]\n"
"Options:\n"
" -h Print this help text\n"
" -r (J|U|E) Force region to Japan, US or Europe respectively\n"
" -f Start in fullscreen mode\n"
" -g Disable OpenGL rendering\n"
" -s FILE Load a GST format savestate from FILE\n"
" -d Enter debugger on startup\n"
" -n Disable Z80\n"
" -v Display version number and exit\n"
" -l Log 68K code addresses (useful for assemblers)\n"
" -y Log individual YM-2612 channels to WAVE files\n"
);
return 0;
default:
fprintf(stderr, "Unrecognized switch %s\n", argv[i]);
return 1;
}
} else if (!loaded) {
if(!load_rom(argv[i])) {
fprintf(stderr, "Failed to open %s for reading\n", argv[i]);
return 1;
}
romfname = argv[i];
loaded = 1;
} else if (width < 0) {
width = atoi(argv[i]);
} else if (height < 0) {
height = atoi(argv[i]);
}
}
if (!loaded) {
fputs("You must specify a ROM filename!\n", stderr);
return 1;
}
if (force_version) {
version_reg = force_version;
}
update_title();
int def_width = 0;
char *config_width = tern_find_ptr(config, "videowidth");
if (config_width) {
def_width = atoi(config_width);
}
if (!def_width) {
def_width = 640;
}
width = width < 320 ? def_width : width;
height = height < 240 ? (width/320) * 240 : height;
uint32_t fps = 60;
if (version_reg & 0x40) {
mclks_per_frame = MCLKS_LINE * LINES_PAL;
fps = 50;
}
if (!headless) {
render_init(width, height, title, fps, fullscreen, use_gl);
}
vdp_context v_context;
genesis_context gen;
memset(&gen, 0, sizeof(gen));
gen.master_clock = gen.normal_clock = fps == 60 ? MCLKS_NTSC : MCLKS_PAL;
init_vdp_context(&v_context);
ym2612_context y_context;
ym_init(&y_context, render_sample_rate(), gen.master_clock, MCLKS_PER_YM, render_audio_buffer(), ym_log ? YM_OPT_WAVE_LOG : 0);
psg_context p_context;
psg_init(&p_context, render_sample_rate(), gen.master_clock, MCLKS_PER_PSG, render_audio_buffer());
z80_context z_context;
x86_z80_options z_opts;
init_x86_z80_opts(&z_opts);
init_z80_context(&z_context, &z_opts);
z_context.system = &gen;
z_context.mem_pointers[0] = z80_ram;
z_context.sync_cycle = z_context.target_cycle = mclks_per_frame/MCLKS_PER_Z80;
z_context.int_cycle = CYCLE_NEVER;
z_context.mem_pointers[1] = z_context.mem_pointers[2] = (uint8_t *)cart;
gen.z80 = &z_context;
gen.vdp = &v_context;
gen.ym = &y_context;
gen.psg = &p_context;
genesis = &gen;
int fname_size = strlen(romfname);
sram_filename = malloc(fname_size+6);
memcpy(sram_filename, romfname, fname_size);
int i;
for (i = fname_size-1; fname_size >= 0; --i) {
if (sram_filename[i] == '.') {
strcpy(sram_filename + i + 1, "sram");
break;
}
}
if (i < 0) {
strcpy(sram_filename + fname_size, ".sram");
}
set_keybindings();
init_run_cpu(&gen, address_log, statefile, debuggerfun);
return 0;
}
|