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
|
// license:GPL-2.0+
// copyright-holders:Kevin Thacker
/*****************************************************************************
*
* includes/timex.h
*
****************************************************************************/
#ifndef MAME_INCLUDES_TIMEX_H
#define MAME_INCLUDES_TIMEX_H
#pragma once
#include "spec128.h"
#include "bus/generic/carts.h"
#include "bus/generic/slot.h"
/* Border sizes for TS2068. These are guesses based on the number of cycles
available per frame. */
#define TS2068_TOP_BORDER 32
#define TS2068_BOTTOM_BORDER 32
#define TS2068_SCREEN_HEIGHT (TS2068_TOP_BORDER + SPEC_DISPLAY_YSIZE + TS2068_BOTTOM_BORDER)
/* Double the border sizes to maintain ratio of screen to border */
#define TS2068_LEFT_BORDER 96 /* Number of left hand border pixels */
#define TS2068_DISPLAY_XSIZE 512 /* Horizontal screen resolution */
#define TS2068_RIGHT_BORDER 96 /* Number of right hand border pixels */
#define TS2068_SCREEN_WIDTH (TS2068_LEFT_BORDER + TS2068_DISPLAY_XSIZE + TS2068_RIGHT_BORDER)
class tc2048_state : public spectrum_128_state
{
public:
tc2048_state(const machine_config &mconfig, device_type type, const char *tag) :
spectrum_128_state(mconfig, type, tag)
{
}
void tc2048(machine_config &config);
protected:
virtual void machine_reset() override;
u8 port_ff_r();
void spectrum_update_screen(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) override;
rectangle get_screen_area() override;
void hires_scanline(bitmap_ind16 &bitmap, int y, int borderlines);
void _64col_scanline(bitmap_ind16 &bitmap, int y, int borderlines, unsigned short inkcolor);
void lores_scanline(bitmap_ind16 &bitmap, int y, int borderlines, int screen);
private:
void port_ff_w(offs_t offset, u8 data);
void tc2048_io(address_map &map);
void tc2048_mem(address_map &map);
inline void spectrum_plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color);
};
class ts2068_state : public tc2048_state
{
public:
ts2068_state(const machine_config &mconfig, device_type type, const char *tag) :
tc2048_state(mconfig, type, tag),
m_dock(*this, "dockslot")
{
}
void ts2068(machine_config &config);
void uk2086(machine_config &config);
protected:
virtual void machine_reset() override;
virtual void video_start() override;
virtual void ts2068_update_memory() override;
private:
enum
{
TIMEX_CART_NONE,
TIMEX_CART_DOCK,
TIMEX_CART_EXROM,
TIMEX_CART_HOME
};
u8 port_f4_r();
void port_f4_w(u8 data);
void port_ff_w(offs_t offset, u8 data);
DECLARE_DEVICE_IMAGE_LOAD_MEMBER(cart_load);
int m_dock_cart_type = 0, m_ram_chunks = 0;
memory_region *m_dock_crt = nullptr;
void ts2068_io(address_map &map);
void ts2068_mem(address_map &map);
required_device<generic_slot_device> m_dock;
};
#endif // MAME_INCLUDES_TIMEX_H
|