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
|
/***************************************************************************
Driver for Epoch Super Cassette Vision
***************************************************************************/
#include "emu.h"
#include "cpu/upd7810/upd7810.h"
#include "imagedev/cartslot.h"
#include "audio/upd1771.h"
class scv_state : public driver_device
{
public:
scv_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_videoram(*this,"videoram") { }
DECLARE_WRITE8_MEMBER(scv_porta_w);
DECLARE_READ8_MEMBER(scv_portb_r);
DECLARE_READ8_MEMBER(scv_portc_r);
DECLARE_WRITE8_MEMBER(scv_portc_w);
DECLARE_WRITE8_MEMBER(scv_cart_ram_w);
DECLARE_WRITE8_MEMBER(scv_cart_ram2_w);
DECLARE_WRITE_LINE_MEMBER(scv_upd1771_ack_w);
required_shared_ptr<UINT8> m_videoram;
UINT8 m_porta;
UINT8 m_portc;
emu_timer *m_vb_timer;
UINT8 *m_cart_rom;
UINT32 m_cart_rom_size;
UINT8 *m_cart_ram;
UINT32 m_cart_ram_size;
bool m_cart_ram_enabled;
virtual void machine_start();
virtual void machine_reset();
virtual void palette_init();
UINT32 screen_update_scv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(scv_vb_callback);
};
static ADDRESS_MAP_START( scv_mem, AS_PROGRAM, 8, scv_state )
AM_RANGE( 0x0000, 0x0fff ) AM_ROM /* BIOS */
AM_RANGE( 0x2000, 0x3403 ) AM_RAM AM_SHARE("videoram") /* VRAM + 4 registers */
AM_RANGE( 0x3600, 0x3600 ) AM_DEVWRITE_LEGACY("upd1771c", upd1771_w )
AM_RANGE( 0x8000, 0x9fff ) AM_ROMBANK("bank0")
AM_RANGE( 0xa000, 0xbfff ) AM_ROMBANK("bank1")
AM_RANGE( 0xc000, 0xdfff ) AM_ROMBANK("bank2")
AM_RANGE( 0xe000, 0xefff ) AM_READ_BANK("bank3") AM_WRITE( scv_cart_ram_w )
AM_RANGE( 0xf000, 0xff7f ) AM_READ_BANK("bank4") AM_WRITE( scv_cart_ram2_w )
AM_RANGE( 0xff80, 0xffff ) AM_RAM /* upd7801 internal RAM */
ADDRESS_MAP_END
static ADDRESS_MAP_START( scv_io, AS_IO, 8, scv_state )
AM_RANGE( 0x00, 0x00 ) AM_WRITE( scv_porta_w )
AM_RANGE( 0x01, 0x01 ) AM_READ( scv_portb_r )
AM_RANGE( 0x02, 0x02 ) AM_READWRITE( scv_portc_r, scv_portc_w )
ADDRESS_MAP_END
static INPUT_PORTS_START( scv )
PORT_START( "PA0" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_PLAYER(1) PORT_8WAY
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_PLAYER(1) PORT_8WAY
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1)
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_PLAYER(2) PORT_8WAY
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_PLAYER(2) PORT_8WAY
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2)
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_START( "PA1" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_PLAYER(1) PORT_8WAY
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(1) PORT_8WAY
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(1)
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_PLAYER(2) PORT_8WAY
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(2) PORT_8WAY
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(2)
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_START( "PA2" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("0") PORT_CODE(KEYCODE_0_PAD)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("1") PORT_CODE(KEYCODE_1_PAD)
PORT_START( "PA3" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("2") PORT_CODE(KEYCODE_2_PAD)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("3") PORT_CODE(KEYCODE_3_PAD)
PORT_START( "PA4" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("4") PORT_CODE(KEYCODE_4_PAD)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("5") PORT_CODE(KEYCODE_5_PAD)
PORT_START( "PA5" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("6") PORT_CODE(KEYCODE_6_PAD)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("7") PORT_CODE(KEYCODE_7_PAD)
PORT_START( "PA6" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("8") PORT_CODE(KEYCODE_8_PAD)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("9") PORT_CODE(KEYCODE_9_PAD)
PORT_START( "PA7" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("Cl") PORT_CODE(KEYCODE_MINUS_PAD)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("En") PORT_CODE(KEYCODE_PLUS_PAD)
PORT_START( "PC0" )
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME(DEF_STR(Pause)) PORT_CODE(KEYCODE_O)
INPUT_PORTS_END
WRITE8_MEMBER( scv_state::scv_cart_ram_w )
{
/* Check if cartridge ram is enabled */
if ( m_cart_ram_enabled )
m_cart_ram[offset] = data;
}
WRITE8_MEMBER( scv_state::scv_cart_ram2_w )
{
/* Check if cartridge ram is enabled */
if ( m_cart_ram_enabled )
{
if ( m_cart_ram_size > 0x1000 )
offset += 0x1000;
m_cart_ram[offset] = data;
}
}
WRITE8_MEMBER( scv_state::scv_porta_w )
{
m_porta = data;
}
READ8_MEMBER( scv_state::scv_portb_r )
{
UINT8 data = 0xff;
if ( ! ( m_porta & 0x01 ) )
data &= ioport( "PA0" )->read();
if ( ! ( m_porta & 0x02 ) )
data &= ioport( "PA1" )->read();
if ( ! ( m_porta & 0x04 ) )
data &= ioport( "PA2" )->read();
if ( ! ( m_porta & 0x08 ) )
data &= ioport( "PA3" )->read();
if ( ! ( m_porta & 0x10 ) )
data &= ioport( "PA4" )->read();
if ( ! ( m_porta & 0x20 ) )
data &= ioport( "PA5" )->read();
if ( ! ( m_porta & 0x40 ) )
data &= ioport( "PA6" )->read();
if ( ! ( m_porta & 0x80 ) )
data &= ioport( "PA7" )->read();
return data;
}
READ8_MEMBER( scv_state::scv_portc_r )
{
UINT8 data = m_portc;
data = ( data & 0xfe ) | ( ioport( "PC0" )->read() & 0x01 );
return data;
}
static void scv_set_banks( running_machine &machine )
{
scv_state *state = machine.driver_data<scv_state>();
state->m_cart_ram_enabled = false;
switch( state->m_cart_rom_size )
{
case 0:
case 0x2000:
state->membank( "bank0" )->set_base( state->m_cart_rom );
state->membank( "bank1" )->set_base( state->m_cart_rom );
state->membank( "bank2" )->set_base( state->m_cart_rom );
state->membank( "bank3" )->set_base( state->m_cart_rom );
state->membank( "bank4" )->set_base( state->m_cart_rom + 0x1000 );
break;
case 0x4000:
state->membank( "bank0" )->set_base( state->m_cart_rom );
state->membank( "bank1" )->set_base( state->m_cart_rom + 0x2000 );
state->membank( "bank2" )->set_base( state->m_cart_rom );
state->membank( "bank3" )->set_base( state->m_cart_rom + 0x2000 );
state->membank( "bank4" )->set_base( state->m_cart_rom + 0x3000 );
break;
case 0x8000:
state->membank( "bank0" )->set_base( state->m_cart_rom );
state->membank( "bank1" )->set_base( state->m_cart_rom + 0x2000 );
state->membank( "bank2" )->set_base( state->m_cart_rom + 0x4000 );
state->membank( "bank3" )->set_base( state->m_cart_rom + 0x6000 );
state->membank( "bank4" )->set_base( state->m_cart_rom + 0x7000 );
break;
case 0x10000:
state->membank( "bank0" )->set_base( state->m_cart_rom + ( ( state->m_portc & 0x20 ) ? 0x8000 : 0 ) );
state->membank( "bank1" )->set_base( state->m_cart_rom + ( ( state->m_portc & 0x20 ) ? 0xa000 : 0x2000 ) );
state->membank( "bank2" )->set_base( state->m_cart_rom + ( ( state->m_portc & 0x20 ) ? 0xc000 : 0x4000 ) );
state->membank( "bank3" )->set_base( state->m_cart_rom + ( ( state->m_portc & 0x20 ) ? 0xe000 : 0x6000 ) );
state->membank( "bank4" )->set_base( state->m_cart_rom + ( ( state->m_portc & 0x20 ) ? 0xf000 : 0x7000 ) );
break;
case 0x20000: /* Pole Position 2 */
int base = ( ( state->m_portc >> 5 ) & 0x03 ) * 0x8000 ;
state->membank( "bank0" )->set_base( state->m_cart_rom + base + 0 );
state->membank( "bank1" )->set_base( state->m_cart_rom + base + 0x2000 );
state->membank( "bank2" )->set_base( state->m_cart_rom + base + 0x4000 );
state->membank( "bank3" )->set_base( state->m_cart_rom + base + 0x6000 );
state->membank( "bank4" )->set_base( state->m_cart_rom + base + 0x7000 );
/* On-cart RAM is enabled when PC6 is high */
if ( state->m_cart_ram && state->m_portc & 0x40 )
{
state->m_cart_ram_enabled = true;
state->membank( "bank4" )->set_base( state->m_cart_ram );
}
break;
}
/* Check if cartridge RAM is available and should be enabled */
if ( state->m_cart_rom_size < 0x20000 && state->m_cart_ram && state->m_cart_ram_size && ( state->m_portc & 0x20 ) )
{
if ( state->m_cart_ram_size == 0x1000 )
{
state->membank( "bank4" )->set_base( state->m_cart_ram );
}
else
{
state->membank( "bank3" )->set_base( state->m_cart_ram );
state->membank( "bank4" )->set_base( state->m_cart_ram + 0x1000 );
}
state->m_cart_ram_enabled = true;
}
}
WRITE8_MEMBER( scv_state::scv_portc_w )
{
//logerror("%04x: scv_portc_w: data = 0x%02x\n", machine().device("maincpu")->safe_pc(), data );
m_portc = data;
scv_set_banks( machine() );
upd1771_pcm_w( machine().device( "upd1771c" ), m_portc & 0x08 );
}
static DEVICE_START( scv_cart )
{
scv_state *state = device->machine().driver_data<scv_state>();
state->m_cart_rom = state->memregion( "cart" )->base();
state->m_cart_rom_size = 0;
state->m_cart_ram = NULL;
state->m_cart_ram_size = 0;
scv_set_banks( device->machine() );
}
static DEVICE_IMAGE_LOAD( scv_cart )
{
scv_state *state = image.device().machine().driver_data<scv_state>();
if ( image.software_entry() == NULL )
{
UINT8 *cart = image.device().machine().root_device().memregion( "cart" )->base();
int size = image.length();
if ( size > state->memregion( "cart" )->bytes() )
{
image.seterror( IMAGE_ERROR_UNSPECIFIED, "Unsupported cartridge size" );
return IMAGE_INIT_FAIL;
}
if ( image.fread( cart, size ) != size )
{
image.seterror( IMAGE_ERROR_UNSPECIFIED, "Unable to fully read from file" );
return IMAGE_INIT_FAIL;
}
state->m_cart_rom = cart;
state->m_cart_rom_size = size;
state->m_cart_ram = NULL;
state->m_cart_ram_size = 0;
}
else
{
state->m_cart_rom = image.get_software_region( "rom" );
state->m_cart_rom_size = image.get_software_region_length( "rom" );
state->m_cart_ram = image.get_software_region( "ram" );
state->m_cart_ram_size = image.get_software_region_length( "ram" );
}
scv_set_banks( image.device().machine() );
return IMAGE_INIT_PASS;
}
void scv_state::palette_init()
{
/*
SCV Epoch-1A chip RGB voltage readouts from paused Bios color test:
(values in millivolts)
R G B
0 29 29 325
1 29 27 22
2 25 24 510
3 337 28 508
4 29 515 22
5 336 512 329
6 26 515 511
7 29 337 25
8 520 24 22
9 517 338 21
10 520 25 512
11 521 336 333
12 518 515 21
13 342 336 22
14 337 336 330
15 516 511 508
Only tree 'bins' of values are obviously captured
25 ish
330 ish
520 ish.
Quamtizing/scaling/rounding between 0 and 255 we thus get:
*/
palette_set_color_rgb( machine(), 0, 0, 0, 155);
palette_set_color_rgb( machine(), 1, 0, 0, 0);
palette_set_color_rgb( machine(), 2, 0, 0, 255);
palette_set_color_rgb( machine(), 3, 161, 0, 255);
palette_set_color_rgb( machine(), 4, 0, 255, 0);
palette_set_color_rgb( machine(), 5, 160, 255, 157);
palette_set_color_rgb( machine(), 6, 0, 255, 255);
palette_set_color_rgb( machine(), 7, 0, 161, 0);
palette_set_color_rgb( machine(), 8, 255, 0, 0);
palette_set_color_rgb( machine(), 9, 255, 161, 0);
palette_set_color_rgb( machine(), 10, 255, 0, 255);
palette_set_color_rgb( machine(), 11, 255, 160, 159);
palette_set_color_rgb( machine(), 12, 255, 255, 0);
palette_set_color_rgb( machine(), 13, 163, 160, 0);
palette_set_color_rgb( machine(), 14, 161, 160, 157);
palette_set_color_rgb( machine(), 15, 255, 255, 255);
}
TIMER_CALLBACK_MEMBER(scv_state::scv_vb_callback)
{
int vpos = machine().primary_screen->vpos();
switch( vpos )
{
case 240:
machine().device("maincpu")->execute().set_input_line(UPD7810_INTF2, ASSERT_LINE);
break;
case 0:
machine().device("maincpu")->execute().set_input_line(UPD7810_INTF2, CLEAR_LINE);
break;
}
m_vb_timer->adjust( machine().primary_screen->time_until_pos(( vpos + 1 ) % 262, 0 ) );
}
INLINE void plot_sprite_part( bitmap_ind16 &bitmap, UINT8 x, UINT8 y, UINT8 pat, UINT8 col, UINT8 screen_sprite_start_line )
{
if ( x < 4 )
{
return;
}
x -= 4;
if ( y + 2 >= screen_sprite_start_line )
{
if ( pat & 0x08 )
{
bitmap.pix16(y + 2, x ) = col;
}
if ( pat & 0x04 && x < 255 )
{
bitmap.pix16(y + 2, x + 1 ) = col;
}
if ( pat & 0x02 && x < 254 )
{
bitmap.pix16(y + 2, x + 2 ) = col;
}
if ( pat & 0x01 && x < 253 )
{
bitmap.pix16(y + 2, x + 3 ) = col;
}
}
}
INLINE void draw_sprite( scv_state *state, bitmap_ind16 &bitmap, UINT8 x, UINT8 y, UINT8 tile_idx, UINT8 col, UINT8 left, UINT8 right, UINT8 top, UINT8 bottom, UINT8 clip_y, UINT8 screen_sprite_start_line )
{
int j;
y += clip_y * 2;
for ( j = clip_y * 4; j < 32; j += 4 )
{
UINT8 pat0 = state->m_videoram[ tile_idx * 32 + j + 0 ];
UINT8 pat1 = state->m_videoram[ tile_idx * 32 + j + 1 ];
UINT8 pat2 = state->m_videoram[ tile_idx * 32 + j + 2 ];
UINT8 pat3 = state->m_videoram[ tile_idx * 32 + j + 3 ];
if ( ( top && j < 16 ) || ( bottom && j >= 16 ) )
{
if ( left )
{
plot_sprite_part( bitmap, x , y, pat0 >> 4, col, screen_sprite_start_line );
plot_sprite_part( bitmap, x + 4, y, pat1 >> 4, col, screen_sprite_start_line );
}
if ( right )
{
plot_sprite_part( bitmap, x + 8, y, pat2 >> 4, col, screen_sprite_start_line );
plot_sprite_part( bitmap, x + 12, y, pat3 >> 4, col, screen_sprite_start_line );
}
if ( left )
{
plot_sprite_part( bitmap, x , y + 1, pat0 & 0x0f, col, screen_sprite_start_line );
plot_sprite_part( bitmap, x + 4, y + 1, pat1 & 0x0f, col, screen_sprite_start_line );
}
if ( right )
{
plot_sprite_part( bitmap, x + 8, y + 1, pat2 & 0x0f, col, screen_sprite_start_line );
plot_sprite_part( bitmap, x + 12, y + 1, pat3 & 0x0f, col, screen_sprite_start_line );
}
}
y += 2;
}
}
INLINE void draw_text( bitmap_ind16 &bitmap, UINT8 x, UINT8 y, UINT8 *char_data, UINT8 fg, UINT8 bg )
{
int i;
for ( i = 0; i < 8; i++ )
{
UINT8 d = char_data[i];
bitmap.pix16(y + i, x + 0 ) = ( d & 0x80 ) ? fg : bg;
bitmap.pix16(y + i, x + 1 ) = ( d & 0x40 ) ? fg : bg;
bitmap.pix16(y + i, x + 2 ) = ( d & 0x20 ) ? fg : bg;
bitmap.pix16(y + i, x + 3 ) = ( d & 0x10 ) ? fg : bg;
bitmap.pix16(y + i, x + 4 ) = ( d & 0x08 ) ? fg : bg;
bitmap.pix16(y + i, x + 5 ) = ( d & 0x04 ) ? fg : bg;
bitmap.pix16(y + i, x + 6 ) = ( d & 0x02 ) ? fg : bg;
bitmap.pix16(y + i, x + 7 ) = ( d & 0x01 ) ? fg : bg;
}
for ( i = 8; i < 16; i++ )
{
bitmap.pix16(y + i, x + 0 ) = bg;
bitmap.pix16(y + i, x + 1 ) = bg;
bitmap.pix16(y + i, x + 2 ) = bg;
bitmap.pix16(y + i, x + 3 ) = bg;
bitmap.pix16(y + i, x + 4 ) = bg;
bitmap.pix16(y + i, x + 5 ) = bg;
bitmap.pix16(y + i, x + 6 ) = bg;
bitmap.pix16(y + i, x + 7 ) = bg;
}
}
INLINE void draw_semi_graph( bitmap_ind16 &bitmap, UINT8 x, UINT8 y, UINT8 data, UINT8 fg )
{
int i;
if ( ! data )
return;
for ( i = 0; i < 4; i++ )
{
bitmap.pix16(y + i, x + 0) = fg;
bitmap.pix16(y + i, x + 1) = fg;
bitmap.pix16(y + i, x + 2) = fg;
bitmap.pix16(y + i, x + 3) = fg;
}
}
INLINE void draw_block_graph( bitmap_ind16 &bitmap, UINT8 x, UINT8 y, UINT8 col )
{
int i;
for ( i = 0; i < 8; i++ )
{
bitmap.pix16(y + i, x + 0) = col;
bitmap.pix16(y + i, x + 1) = col;
bitmap.pix16(y + i, x + 2) = col;
bitmap.pix16(y + i, x + 3) = col;
bitmap.pix16(y + i, x + 4) = col;
bitmap.pix16(y + i, x + 5) = col;
bitmap.pix16(y + i, x + 6) = col;
bitmap.pix16(y + i, x + 7) = col;
}
}
UINT32 scv_state::screen_update_scv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
int x, y;
UINT8 fg = m_videoram[0x1403] >> 4;
UINT8 bg = m_videoram[0x1403] & 0x0f;
UINT8 gr_fg = m_videoram[0x1401] >> 4;
UINT8 gr_bg = m_videoram[0x1401] & 0x0f;
int clip_x = ( m_videoram[0x1402] & 0x0f ) * 2;
int clip_y = m_videoram[0x1402] >> 4;
/* Clear the screen */
bitmap.fill(gr_bg , cliprect);
/* Draw background */
for ( y = 0; y < 16; y++ )
{
int text_y = 0;
if ( y < clip_y )
{
text_y = ( m_videoram[0x1400] & 0x80 ) ? 0 : 1;
}
else
{
text_y = ( m_videoram[0x1400] & 0x80 ) ? 1 : 0;
}
for ( x = 0; x < 32; x++ )
{
int text_x = 0;
UINT8 d = m_videoram[ 0x1000 + y * 32 + x ];
if ( x < clip_x )
{
text_x = ( m_videoram[0x1400] & 0x40 ) ? 0 : 1;
}
else
{
text_x = ( m_videoram[0x1400] & 0x40 ) ? 1 : 0;
}
if ( text_x && text_y )
{
/* Text mode */
UINT8 *char_data = memregion( "charrom" )->base() + ( d & 0x7f ) * 8;
draw_text( bitmap, x * 8, y * 16, char_data, fg, bg );
}
else
{
switch ( m_videoram[0x1400] & 0x03 )
{
case 0x01: /* Semi graphics mode */
draw_semi_graph( bitmap, x * 8 , y * 16 , d & 0x80, gr_fg );
draw_semi_graph( bitmap, x * 8 + 4, y * 16 , d & 0x40, gr_fg );
draw_semi_graph( bitmap, x * 8 , y * 16 + 4, d & 0x20, gr_fg );
draw_semi_graph( bitmap, x * 8 + 4, y * 16 + 4, d & 0x10, gr_fg );
draw_semi_graph( bitmap, x * 8 , y * 16 + 8, d & 0x08, gr_fg );
draw_semi_graph( bitmap, x * 8 + 4, y * 16 + 8, d & 0x04, gr_fg );
draw_semi_graph( bitmap, x * 8 , y * 16 + 12, d & 0x02, gr_fg );
draw_semi_graph( bitmap, x * 8 + 4, y * 16 + 12, d & 0x01, gr_fg );
break;
case 0x03: /* Block graphics mode */
draw_block_graph( bitmap, x * 8, y * 16 , d >> 4 );
draw_block_graph( bitmap, x * 8, y * 16 + 8, d & 0x0f );
break;
default: /* Otherwise draw nothing? */
break;
}
}
}
}
/* Draw sprites if enabled */
if ( m_videoram[0x1400] & 0x10 )
{
UINT8 screen_start_sprite_line = ( ( ( m_videoram[0x1400] & 0xf7 ) == 0x17 ) && ( ( m_videoram[0x1402] & 0xef ) == 0x4f ) ) ? 21 + 32 : 0 ;
int i;
for ( i = 0; i < 128; i++ )
{
UINT8 spr_y = m_videoram[ 0x1200 + i * 4 ] & 0xfe;
UINT8 y_32 = m_videoram[ 0x1200 + i * 4 ] & 0x01; /* Xx32 sprite */
UINT8 clip = m_videoram[ 0x1201 + i * 4 ] >> 4;
UINT8 col = m_videoram[ 0x1201 + i * 4 ] & 0x0f;
UINT8 spr_x = m_videoram[ 0x1202 + i * 4 ] & 0xfe;
UINT8 x_32 = m_videoram[ 0x1202 + i * 4 ] & 0x01; /* 32xX sprite */
UINT8 tile_idx = m_videoram[ 0x1203 + i * 4 ] & 0x7f;
UINT8 half = m_videoram[ 0x1203 + i * 4] & 0x80;
UINT8 left = 1;
UINT8 right = 1;
UINT8 top = 1;
UINT8 bottom = 1;
if ( !col )
{
continue;
}
if ( !spr_y )
{
continue;
}
if ( half )
{
if ( tile_idx & 0x40 )
{
if ( y_32 )
{
spr_y -= 8;
top = 0;
bottom = 1;
y_32 = 0;
}
else
{
top = 1;
bottom = 0;
}
}
if ( x_32 )
{
spr_x -= 8;
left = 0;
right = 1;
x_32 = 0;
}
else
{
left = 1;
right = 0;
}
}
/* Check if 2 color sprites are enabled */
if ( ( m_videoram[0x1400] & 0x20 ) && ( i & 0x20 ) )
{
/* 2 color sprite handling */
draw_sprite( this, bitmap, spr_x, spr_y, tile_idx, col, left, right, top, bottom, clip, screen_start_sprite_line );
if ( x_32 || y_32 )
{
static const UINT8 spr_2col_lut0[16] = { 0, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 1, 1 };
static const UINT8 spr_2col_lut1[16] = { 0, 1, 8, 11, 2, 3, 10, 9, 4, 5, 12, 13, 6, 7, 14, 15 };
draw_sprite( this, bitmap, spr_x, spr_y, tile_idx ^ ( 8 * x_32 + y_32 ), ( i & 0x40 ) ? spr_2col_lut1[col] : spr_2col_lut0[col], left, right, top, bottom, clip, screen_start_sprite_line );
}
}
else
{
/* regular sprite handling */
draw_sprite( this, bitmap, spr_x, spr_y, tile_idx, col, left, right, top, bottom, clip, screen_start_sprite_line );
if ( x_32 )
{
draw_sprite( this, bitmap, spr_x + 16, spr_y, tile_idx | 8, col, 1, 1, top, bottom, clip, screen_start_sprite_line );
}
if ( y_32 )
{
clip = ( clip & 0x08 ) ? ( clip & 0x07 ) : 0;
draw_sprite( this, bitmap, spr_x, spr_y + 16, tile_idx | 1, col, left, right, 1, 1, clip, screen_start_sprite_line );
if ( x_32 )
{
draw_sprite( this, bitmap, spr_x + 16, spr_y + 16, tile_idx | 9, col, 1, 1, 1, 1, clip, screen_start_sprite_line );
}
}
}
}
}
return 0;
}
WRITE_LINE_MEMBER( scv_state::scv_upd1771_ack_w )
{
machine().device("maincpu")->execute().set_input_line(UPD7810_INTF1, (state) ? ASSERT_LINE : CLEAR_LINE);
}
void scv_state::machine_start()
{
m_vb_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(scv_state::scv_vb_callback),this));
}
void scv_state::machine_reset()
{
m_vb_timer->adjust( machine().primary_screen->time_until_pos(0, 0 ) );
}
/* F4 Character Displayer */
static const gfx_layout scv_charlayout =
{
8, 8, /* 8 x 8 characters */
128, /* 128 characters */
1, /* 1 bits per pixel */
{ 0 }, /* no bitplanes */
/* x offsets */
{ 0, 1, 2, 3, 4, 5, 6, 7 },
/* y offsets */
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 },
8*8 /* every char takes 8 bytes */
};
static GFXDECODE_START( scv )
GFXDECODE_ENTRY( "charrom", 0x0000, scv_charlayout, 0, 8 )
GFXDECODE_END
static const UPD7810_CONFIG scv_cpu_config = { TYPE_7801, NULL };
static const upd1771_interface scv_upd1771c_config = { DEVCB_DRIVER_LINE_MEMBER( scv_state, scv_upd1771_ack_w ) };
static MACHINE_CONFIG_START( scv, scv_state )
MCFG_CPU_ADD( "maincpu", UPD7801, XTAL_4MHz )
MCFG_CPU_PROGRAM_MAP( scv_mem )
MCFG_CPU_IO_MAP( scv_io )
MCFG_CPU_CONFIG( scv_cpu_config )
/* Video chip is EPOCH TV-1 */
MCFG_SCREEN_ADD( "screen", RASTER )
MCFG_SCREEN_RAW_PARAMS( XTAL_14_31818MHz/2, 456, 24, 24+192, 262, 23, 23+222 ) /* TODO: Verify */
MCFG_SCREEN_UPDATE_DRIVER(scv_state, screen_update_scv)
MCFG_GFXDECODE(scv)
MCFG_PALETTE_LENGTH( 16 )
/* Sound is generated by UPD1771C clocked at XTAL_6MHz */
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_SOUND_ADD( "upd1771c", UPD1771C, XTAL_6MHz )
MCFG_SOUND_CONFIG( scv_upd1771c_config )
MCFG_SOUND_ROUTE( ALL_OUTPUTS, "mono", 1.00 )
MCFG_CARTSLOT_ADD( "cart" )
MCFG_CARTSLOT_EXTENSION_LIST( "bin" )
MCFG_CARTSLOT_NOT_MANDATORY
MCFG_CARTSLOT_INTERFACE("scv_cart")
MCFG_CARTSLOT_START( scv_cart )
MCFG_CARTSLOT_LOAD( scv_cart )
/* Software lists */
MCFG_SOFTWARE_LIST_ADD("cart_list","scv")
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( scv_pal, scv )
MCFG_CPU_MODIFY( "maincpu" )
MCFG_CPU_CLOCK( 3780000 )
/* Video chip is EPOCH TV-1A */
MCFG_SCREEN_MODIFY( "screen" )
MCFG_SCREEN_RAW_PARAMS( XTAL_13_4MHz/2, 456, 24, 24+192, 342, 23, 23+222 ) /* TODO: Verify */
MACHINE_CONFIG_END
/* The same bios is used in both the NTSC and PAL versions of the console */
ROM_START( scv )
ROM_REGION( 0x1000, "maincpu", 0 )
ROM_LOAD( "upd7801g.s01", 0, 0x1000, CRC(7ac06182) SHA1(6e89d1227581c76441a53d605f9e324185f1da33) )
ROM_REGION( 0x400, "charrom", 0 )
ROM_LOAD( "epochtv.chr", 0, 0x400, BAD_DUMP CRC(db521533) SHA1(40b4e44838c35191f115437a14f200f052e71509) )
ROM_REGION( 0x20000, "cart", ROMREGION_ERASEFF )
ROM_END
ROM_START( scv_pal )
ROM_REGION( 0x1000, "maincpu", 0 )
ROM_LOAD( "upd7801g.s01", 0, 0x1000, CRC(7ac06182) SHA1(6e89d1227581c76441a53d605f9e324185f1da33) )
ROM_REGION( 0x400, "charrom", 0 )
ROM_LOAD( "epochtv.chr", 0, 0x400, BAD_DUMP CRC(db521533) SHA1(40b4e44838c35191f115437a14f200f052e71509) )
ROM_REGION( 0x20000, "cart", ROMREGION_ERASEFF )
ROM_END
/* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */
CONS( 1984, scv, 0, 0, scv, scv, driver_device, 0, "Epoch", "Super Cassette Vision", GAME_IMPERFECT_SOUND )
CONS( 198?, scv_pal, scv, 0, scv_pal, scv, driver_device, 0, "Yeno", "Super Cassette Vision (PAL)", GAME_IMPERFECT_SOUND )
|