mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
(MESS) pt68k4: Hooked up devices, can now read floppy disks. [R. Belmont]
This commit is contained in:
parent
2872800e9e
commit
5a1cf806ac
@ -6,39 +6,65 @@
|
||||
|
||||
2011-01-03 Skeleton driver.
|
||||
2013-09-30 Connected to a terminal
|
||||
|
||||
2014-01-03 Connect real DUARTs, FDC, and TimeKeeper. Settings now save properly, floppies can be read.
|
||||
|
||||
This has the appearance of a PC, including pc power supply, slots, etc
|
||||
on a conventional pc-like motherboard and case.
|
||||
|
||||
Some pics: http://www.wormfood.net/old_computers/
|
||||
|
||||
Note: bios 0 works with the terminal. When first started, press Enter
|
||||
to get the logo. Enter HE to get a list of commands. Terminate
|
||||
numeric entries with a Space (not Enter!).
|
||||
Note: bios 0 works with the terminal. When first started, set terminal
|
||||
to 19200 baud and press Enter to get the logo. Enter HE to get a
|
||||
list of commands. Terminate numeric entries with a Space (not Enter!).
|
||||
|
||||
bios 1 works now too, but it's weird. Set the terminal to 2400 baud
|
||||
then press F3 reset and hit a key or 2. When garbage starts spewing,
|
||||
bump the terminal to 9600 baud and press "O Enter". The menu should appear.
|
||||
|
||||
Chips:
|
||||
68230 Parallel Interface/Timer @ FE0080
|
||||
68681 DUART/Timer (x2) @ FE0000 and FE0040
|
||||
WD37C65 FDC @ FE0101/3/etc (compatible with PC NEC765)
|
||||
Floppy drive select @ FE00C1: bits 0/1 drive select 0-3, bit 5 = 1 for double density, bit 6 = side select
|
||||
MK48T02 TimeKeeper @ FF0FF1/3/5/etc.
|
||||
68230 Parallel Interface/Timer @ FE0081
|
||||
68681 DUART/Timer (x2) @ FE0001 and FE0041
|
||||
WD37C65 FDC (PC FDC compatible, even mapped as an ISA device)
|
||||
MK48T02 TimeKeeper @ odd bytes from FF0001 to FF0FFF. even bytes in that range are a standard SRAM chip which is not backed up.
|
||||
Keyboard at FE01C1 (status/IRQ clear)/FE01C3 (AT scan codes)
|
||||
WD1002 HDD controller @ FE0141-FE014F. "Monk" BIOS also supports an 8-bit ISA IDE card.
|
||||
|
||||
Video: ISA MDA or CGA-style boards
|
||||
MDA maps VRAM at D60000, 6845 address at FA0769, 6845 data at FA076B, control latch at FA0771
|
||||
CGA maps VRAM at D70000, 6845 address at FA07A9, 6845 data at FA07AB, control port at FA07B1, color set at FA07B3, CGA status at FA07B5
|
||||
Video: ISA MDA or CGA/EGA/VGA-style boards
|
||||
MDA maps VRAM at D60001, 6845 address at FA0769, 6845 data at FA076B, control latch at FA0771
|
||||
CGA maps VRAM at D70001, 6845 address at FA07A9, 6845 data at FA07AB, control port at FA07B1, color set at FA07B3, CGA status at FA07B5
|
||||
|
||||
ISA memory is C00001-DFFFFF odd bytes only. So the MDA B0000 framebuffer becames (B0000*2) + C00001 = D60001.
|
||||
ISA I/O is at FA0001-FBFFFF odd bytes only, and the mapping is similar.
|
||||
|
||||
HUMBUG BIOS tests MDA and CGA VRAM to determine existence, falls back to serial console if neither exists. If both exist, MDA is used.
|
||||
VRAM is every other byte for ISA cards. (Only 8 bit cards are supported).
|
||||
|
||||
OP3 on DUART1 drives a speaker. n68681 needs to handle "OP3 is timer/counter output" mode.
|
||||
|
||||
IRQs:
|
||||
5: keyboard has new scan code available, all others don't exist
|
||||
2: 68230 PIT
|
||||
4: DUART2
|
||||
5: keyboard has a new scan code and DUART1
|
||||
6: PC FDC IRQ
|
||||
|
||||
TODO: 68230 device. Better hardware documentation would be nice too.
|
||||
ISA interface and keyboard port would greatly improve usability.
|
||||
How to handle ISA transparently so cards map themselves automatically?
|
||||
|
||||
****************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/m68000/m68000.h"
|
||||
#include "machine/terminal.h"
|
||||
#include "machine/n68681.h"
|
||||
#include "machine/timekpr.h"
|
||||
#include "machine/pc_fdc.h"
|
||||
#include "formats/imd_dsk.h"
|
||||
|
||||
#define DUART1_TAG "duart1"
|
||||
#define DUART2_TAG "duart2"
|
||||
#define TIMEKEEPER_TAG "timekpr"
|
||||
#define PCFDC_TAG "pcfdc"
|
||||
|
||||
class pt68k4_state : public driver_device
|
||||
{
|
||||
@ -46,38 +72,70 @@ public:
|
||||
pt68k4_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag)
|
||||
, m_p_base(*this, "rambase")
|
||||
, m_p_upper(*this, "upper_ram")
|
||||
, m_maincpu(*this, "maincpu")
|
||||
, m_terminal(*this, TERMINAL_TAG)
|
||||
, m_duart1(*this, DUART1_TAG)
|
||||
, m_duart2(*this, DUART2_TAG)
|
||||
{ }
|
||||
|
||||
DECLARE_WRITE8_MEMBER(kbd_put);
|
||||
DECLARE_READ16_MEMBER(status_r);
|
||||
DECLARE_READ16_MEMBER(nop_r);
|
||||
//virtual void video_start();
|
||||
//UINT32 screen_update_pt68k4(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||
DECLARE_READ8_MEMBER(hiram_r);
|
||||
DECLARE_WRITE8_MEMBER(hiram_w);
|
||||
DECLARE_READ8_MEMBER(keyboard_r);
|
||||
DECLARE_WRITE8_MEMBER(keyboard_w);
|
||||
|
||||
DECLARE_WRITE_LINE_MEMBER(duart1_irq);
|
||||
DECLARE_WRITE_LINE_MEMBER(duart2_irq);
|
||||
|
||||
DECLARE_FLOPPY_FORMATS( floppy_formats );
|
||||
|
||||
private:
|
||||
virtual void machine_reset();
|
||||
required_shared_ptr<UINT16> m_p_base;
|
||||
required_shared_ptr<UINT16> m_p_upper;
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_device<generic_terminal_device> m_terminal;
|
||||
required_device<duartn68681_device> m_duart1;
|
||||
required_device<duartn68681_device> m_duart2;
|
||||
|
||||
UINT8 m_hiram[0x800];
|
||||
};
|
||||
|
||||
FLOPPY_FORMATS_MEMBER( pt68k4_state::floppy_formats )
|
||||
FLOPPY_IMD_FORMAT
|
||||
FLOPPY_FORMATS_END
|
||||
|
||||
static ADDRESS_MAP_START(pt68k4_mem, AS_PROGRAM, 16, pt68k4_state)
|
||||
ADDRESS_MAP_UNMAP_HIGH
|
||||
AM_RANGE(0x000000, 0x07ffff) AM_RAM AM_SHARE("rambase") // 512 KB RAM / ROM at boot
|
||||
AM_RANGE(0x000000, 0x0fffff) AM_RAM AM_SHARE("rambase") // 1MB RAM (OS9 needs more)
|
||||
AM_RANGE(0xf80000, 0xf8ffff) AM_ROM AM_REGION("roms", 0)
|
||||
AM_RANGE(0xfe0002, 0xfe0003) AM_READ(status_r)
|
||||
AM_RANGE(0xfe0006, 0xfe0007) AM_DEVWRITE8(TERMINAL_TAG, generic_terminal_device, write, 0x00ff)
|
||||
AM_RANGE(0xfe0012, 0xfe0013) AM_READ(nop_r)
|
||||
AM_RANGE(0xff0000, 0xffffff) AM_RAM AM_SHARE("upper_ram")
|
||||
AM_RANGE(0xfa07e0, 0xfa07ef) AM_DEVICE8(PCFDC_TAG, pc_fdc_at_device, map, 0x00ff)
|
||||
AM_RANGE(0xfe0000, 0xfe001f) AM_DEVREADWRITE8(DUART1_TAG, duartn68681_device, read, write, 0x00ff)
|
||||
AM_RANGE(0xfe0040, 0xfe005f) AM_DEVREADWRITE8(DUART2_TAG, duartn68681_device, read, write, 0x00ff)
|
||||
AM_RANGE(0xfe01c0, 0xfe01c3) AM_READWRITE8(keyboard_r, keyboard_w, 0x00ff)
|
||||
AM_RANGE(0xff0000, 0xff0fff) AM_READWRITE8(hiram_r, hiram_w, 0xff00)
|
||||
AM_RANGE(0xff0000, 0xff0fff) AM_DEVREADWRITE8(TIMEKEEPER_TAG, timekeeper_device, read, write, 0x00ff)
|
||||
ADDRESS_MAP_END
|
||||
|
||||
/* Input ports */
|
||||
static INPUT_PORTS_START( pt68k4 )
|
||||
INPUT_PORTS_END
|
||||
|
||||
/* built in keyboard: offset 0 reads 0x80 if key ready, 0 if not. If key ready, offset 1 reads scancode. Write (and read?) to offs 0 clears key ready? */
|
||||
READ8_MEMBER(pt68k4_state::keyboard_r)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(pt68k4_state::keyboard_w)
|
||||
{
|
||||
}
|
||||
|
||||
READ8_MEMBER(pt68k4_state::hiram_r)
|
||||
{
|
||||
return m_hiram[offset];
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(pt68k4_state::hiram_w)
|
||||
{
|
||||
m_hiram[offset] = data;
|
||||
}
|
||||
|
||||
void pt68k4_state::machine_reset()
|
||||
{
|
||||
@ -87,50 +145,42 @@ void pt68k4_state::machine_reset()
|
||||
m_maincpu->reset();
|
||||
}
|
||||
|
||||
//void pt68k4_state::video_start()
|
||||
//{
|
||||
//}
|
||||
|
||||
//UINT32 pt68k4_state::screen_update_pt68k4(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
|
||||
//{
|
||||
// return 0;
|
||||
//}
|
||||
|
||||
READ16_MEMBER( pt68k4_state::status_r )
|
||||
WRITE_LINE_MEMBER(pt68k4_state::duart1_irq)
|
||||
{
|
||||
return 0x8c;
|
||||
m_maincpu->set_input_line(M68K_IRQ_5, state);
|
||||
}
|
||||
|
||||
READ16_MEMBER( pt68k4_state::nop_r )
|
||||
WRITE_LINE_MEMBER(pt68k4_state::duart2_irq)
|
||||
{
|
||||
return 0;
|
||||
m_maincpu->set_input_line(M68K_IRQ_4, state);
|
||||
}
|
||||
|
||||
WRITE8_MEMBER( pt68k4_state::kbd_put )
|
||||
{
|
||||
m_p_upper[0x64f] = 0x100 | data;
|
||||
}
|
||||
|
||||
static GENERIC_TERMINAL_INTERFACE( terminal_intf )
|
||||
{
|
||||
DEVCB_DRIVER_MEMBER(pt68k4_state, kbd_put)
|
||||
};
|
||||
static SLOT_INTERFACE_START( pt68k_floppies )
|
||||
SLOT_INTERFACE( "525dd", FLOPPY_525_DD )
|
||||
SLOT_INTERFACE( "525hd", FLOPPY_525_HD )
|
||||
SLOT_INTERFACE( "35dd", FLOPPY_35_DD )
|
||||
SLOT_INTERFACE( "35hd", FLOPPY_35_HD )
|
||||
SLOT_INTERFACE_END
|
||||
|
||||
static MACHINE_CONFIG_START( pt68k4, pt68k4_state )
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu",M68000, XTAL_16MHz)
|
||||
MCFG_CPU_PROGRAM_MAP(pt68k4_mem)
|
||||
|
||||
/* video hardware */
|
||||
MCFG_GENERIC_TERMINAL_ADD(TERMINAL_TAG, terminal_intf)
|
||||
//MCFG_SCREEN_ADD("screen", RASTER)
|
||||
//MCFG_SCREEN_REFRESH_RATE(50)
|
||||
//MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500)) /* not accurate */
|
||||
//MCFG_SCREEN_SIZE(640, 480)
|
||||
//MCFG_SCREEN_VISIBLE_AREA(0, 640-1, 0, 480-1)
|
||||
//MCFG_SCREEN_UPDATE_DRIVER(pt68k4_state, screen_update_pt68k4)
|
||||
//MCFG_PALETTE_LENGTH(2)
|
||||
//MCFG_PALETTE_INIT_OVERRIDE(driver_device, black_and_white)
|
||||
// add the DUARTS. first one has the console on channel A at 19200.
|
||||
MCFG_DUARTN68681_ADD("duart1", XTAL_16MHz / 4)
|
||||
MCFG_DUARTN68681_IRQ_CALLBACK(WRITELINE(pt68k4_state, duart1_irq))
|
||||
MCFG_DUARTN68681_A_TX_CALLBACK(DEVWRITELINE("rs232", serial_port_device, tx))
|
||||
|
||||
MCFG_DUARTN68681_ADD("duart2", XTAL_16MHz / 4)
|
||||
|
||||
MCFG_RS232_PORT_ADD("rs232", default_rs232_devices, "serial_terminal")
|
||||
MCFG_SERIAL_OUT_RX_HANDLER(DEVWRITELINE("duart1", duartn68681_device, rx_a_w))
|
||||
|
||||
MCFG_M48T02_ADD(TIMEKEEPER_TAG)
|
||||
|
||||
MCFG_PC_FDC_AT_ADD(PCFDC_TAG)
|
||||
MCFG_FLOPPY_DRIVE_ADD(PCFDC_TAG ":0", pt68k_floppies, "525dd", pt68k4_state::floppy_formats)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
/* ROM definition */
|
||||
@ -153,4 +203,4 @@ ROM_END
|
||||
/* Driver */
|
||||
|
||||
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS */
|
||||
COMP( 1990, pt68k4, 0, 0, pt68k4, pt68k4, driver_device, 0, "Peripheral Technology", "PT68K4", GAME_NOT_WORKING | GAME_NO_SOUND)
|
||||
COMP( 1990, pt68k4, 0, 0, pt68k4, pt68k4, driver_device, 0, "Peripheral Technology", "PT68K4", GAME_NOT_WORKING | GAME_NO_SOUND)
|
||||
|
Loading…
Reference in New Issue
Block a user