PIT timers can now be restarted using GATE input - CPU speed detection on SiS496/497 now works.
Added missing port 0x61 to Olivetti M24 - PC speaker now works on that machine. Some code tidying.
This commit is contained in:
parent
a592bd12ee
commit
36cdd540b2
9 changed files with 57 additions and 26 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#include "io.h"
|
||||
#include "mem.h"
|
||||
#include "pic.h"
|
||||
#include "pit.h"
|
||||
#include "sound.h"
|
||||
#include "timer.h"
|
||||
|
||||
|
|
@ -59,10 +60,7 @@ void keyboard_amstrad_adddata(uint8_t val)
|
|||
void keyboard_amstrad_write(uint16_t port, uint8_t val, void *priv)
|
||||
{
|
||||
pclog("keyboard_amstrad : write %04X %02X %02X\n", port, val, keyboard_amstrad.pb);
|
||||
/* if (ram[8] == 0xc3)
|
||||
{
|
||||
output = 3;
|
||||
}*/
|
||||
|
||||
switch (port)
|
||||
{
|
||||
case 0x61:
|
||||
|
|
@ -75,16 +73,13 @@ void keyboard_amstrad_write(uint16_t port, uint8_t val, void *priv)
|
|||
keyboard_amstrad.pb = val;
|
||||
ppi.pb = val;
|
||||
|
||||
/* if (AMSTRADIO)
|
||||
keyboard_amstrad.s2 = val & 4;
|
||||
else
|
||||
keyboard_amstrad.s2 = val & 8;*/
|
||||
gated = ((val & 3) == 3);
|
||||
if (gated)
|
||||
wasgated = 1;
|
||||
|
||||
wasgated = 1;
|
||||
pit_set_gate(2, val & 1);
|
||||
|
||||
if (val & 0x80)
|
||||
keyboard_amstrad.pa = 0;
|
||||
keyboard_amstrad.pa = 0;
|
||||
break;
|
||||
|
||||
case 0x63:
|
||||
|
|
|
|||
Loading…
Reference in a new issue