summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/egret.h
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2012-10-14 01:28:42 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2012-10-14 01:28:42 +0000
commit85f1df0adcf8eb926e46fb7867651198f48fc968 (patch)
tree5f19a04555809d2f8009ab5247cd7a30294ede2e /src/mess/machine/egret.h
parent80330d5e949b331c9481d4a2dc6b9e516ec7cd97 (diff)
(MESS) Mac updates: [R. Belmont]
- Line-level ADB comms for machines using the Egret ADB MCU, including standard transactions and SRQ - Built-in video support for all modes on machines with the V8 and Sonora ASICs - Corrected some minor bugs in the ADB protocol spoken by the keyboard simulation New systems added or promoted from NOT_WORKING status ----------------------------------------------------- Macintosh LC [R. Belmont] Macintosh IIsi [R. Belmont] Macintosh LC II [R. Belmont] Macintosh Classic II [R. Belmont] Macintosh LC III [R. Belmont] Macintosh IIvx [R. Belmont] Macintosh IIvi [R. Belmont]
Diffstat (limited to 'src/mess/machine/egret.h')
-rw-r--r--src/mess/machine/egret.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mess/machine/egret.h b/src/mess/machine/egret.h
index 0d5581e32db..afaad798c40 100644
--- a/src/mess/machine/egret.h
+++ b/src/mess/machine/egret.h
@@ -77,6 +77,7 @@ public:
UINT8 get_via_data() { return via_data; }
void set_via_data(UINT8 dat) { via_data = dat; }
UINT8 get_via_clock() { return via_clock; }
+ void set_adb_line(int linestate) { adb_in = (linestate == ASSERT_LINE) ? true : false; }
int rom_offset;