mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-31 20:30:04 +00:00
Add missing 6502 pin events
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
92d23d82d6
commit
7f853ec73f
@ -16,34 +16,42 @@ void EightBit::MOS6502::raisePOWER() {
|
||||
|
||||
void EightBit::MOS6502::lowerNMI() {
|
||||
lower(NMI());
|
||||
LoweredNMI.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::raiseNMI() {
|
||||
raise(NMI());
|
||||
RaisedNMI.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::lowerSO() {
|
||||
lower(SO());
|
||||
LoweredSO.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::raiseSO() {
|
||||
raise(SO());
|
||||
RaisedSO.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::lowerSYNC() {
|
||||
lower(SYNC());
|
||||
LoweredSYNC.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::raiseSYNC() {
|
||||
raise(SYNC());
|
||||
RaisedSYNC.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::lowerRDY() {
|
||||
lower(RDY());
|
||||
LoweredRDY.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
void EightBit::MOS6502::raiseRDY() {
|
||||
raise(RDY());
|
||||
RaisedRDY.fire(EventArgs::empty());
|
||||
}
|
||||
|
||||
int EightBit::MOS6502::step() {
|
||||
|
Loading…
Reference in New Issue
Block a user