IBM.H is gone, video stuff re-organized. Keyboard stuff reorganized. Machines that have their own video, mouse and/or keyboard now have all this in their machine file. Fixed and other cleanups here and there.
26 lines
421 B
C
26 lines
421 B
C
/* Copyright holders: Sarah Walker
|
|
see COPYING for more details
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <wchar.h>
|
|
#include "io.h"
|
|
#include "nmi.h"
|
|
|
|
|
|
int nmi_mask;
|
|
|
|
|
|
void nmi_write(uint16_t port, uint8_t val, void *p)
|
|
{
|
|
nmi_mask = val & 0x80;
|
|
}
|
|
|
|
|
|
void nmi_init(void)
|
|
{
|
|
io_sethandler(0x00a0, 0x0001, NULL, NULL, NULL, nmi_write, NULL, NULL, NULL);
|
|
nmi_mask = 0;
|
|
}
|