Previous 199869 Revisions Next

r26089 Sunday 10th November, 2013 at 13:28:07 UTC by Robbbert
(MESS) C80 : Added notes; added wave sound (nw)
[src/mess/drivers]c80.c

trunk/src/mess/drivers/c80.c
r26088r26089
22// copyright-holders:Curt Coder
33/***************************************************************************
44
5    C-80
5C-80
66
7    Pasting:
8        0-F : as is
9        + (inc) : ^
10        - (dec) : V
11        M : -
12        GO : X
7Pasting:
8    0-F : as is
9    + (inc) : ^
10    - (dec) : V
11    M : -
12    GO : X
1313
14    Test Paste:
15        -800^11^22^33^44^55^66^77^88^99^-800
16        Now press up-arrow to confirm the data has been entered.
14Test Paste:
15    -800^11^22^33^44^55^66^77^88^99^-800
16    Now press up-arrow to confirm the data has been entered.
1717
18Commands:
19    R : REGister
20    M : MEMory manipulation
21    G : GO
22  F10 : RESet
23  ESC : BRK   
24
25Functions (press F1 then the indicated number):
26    0 : FILL
27    1 : SAVE
28    2 : LOAD
29    3 : LOADP
30    4 : MOVE
31    5 : IN
32    6 : OUT
33
34When REG is chosen, use UP to scroll through the list of regs,
35or press 0 thru C to choose one directly:
36    0 : SP
37    1 : PC
38    2 : AF
39    3 : BC
40    4 : DE
41    5 : HL
42    6 : AF'
43    7 : BC'
44    8 : DE'
45    9 : HL'
46    A : IFF
47    B : IX
48    C : IY
49
50When MEM is chosen, enter the address, press UP, enter data, press UP, enter
51data of next byte, and so on.
52
1853****************************************************************************/
1954
2055#include "includes/c80.h"
56#include "sound/wave.h"
2157#include "c80.lh"
2258
2359/* Memory Maps */
r26088r26089
236272{
237273   cassette_default_formats,
238274   NULL,
239   (cassette_state)(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_MUTED),
275   (cassette_state)(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED ),
240276   NULL,
241277   NULL
242278};
r26088r26089
255291   MCFG_Z80PIO_ADD(Z80PIO1_TAG, 2500000, pio1_intf)
256292   MCFG_Z80PIO_ADD(Z80PIO2_TAG, 2500000, pio2_intf)
257293   MCFG_CASSETTE_ADD("cassette", c80_cassette_interface)
294   MCFG_SPEAKER_STANDARD_MONO("mono")
295   MCFG_SOUND_WAVE_ADD(WAVE_TAG, "cassette")
296   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
258297
259298   /* internal ram */
260299   MCFG_RAM_ADD(RAM_TAG)
r26088r26089
271310
272311/* System Drivers */
273312
274/*    YEAR  NAME    PARENT  COMPAT  MACHINE INPUT   INIT  COMPANY      FULLNAME    FLAGS */
275COMP( 1986, c80,    0,      0,      c80,    c80, driver_device,    0, "Joachim Czepa", "C-80", GAME_SUPPORTS_SAVE | GAME_NO_SOUND)
313/*    YEAR  NAME    PARENT  COMPAT  MACHINE INPUT  CLASS            INIT  COMPANY      FULLNAME    FLAGS */
314COMP( 1986, c80,    0,      0,      c80,    c80,   driver_device,    0, "Joachim Czepa", "C-80", GAME_SUPPORTS_SAVE )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team