diff --git a/cardBrainBoard.go b/cardBrainBoard.go index 68e7de6..a5dc90e 100644 --- a/cardBrainBoard.go +++ b/cardBrainBoard.go @@ -117,10 +117,8 @@ func (c *CardBrainBoard) updateState() { ((!c.dip56_lowerInA && !c.isBankB) || (!c.dip78_upperInB && c.isBankB)) if isMotherboardRomEnabled && !c.isMotherboardRomEnabled { - fmt.Print("ROM: main") c.a.mmu.inhibitROM(nil) } else if !isMotherboardRomEnabled && c.isMotherboardRomEnabled { - fmt.Print("ROM: brain") c.a.mmu.inhibitROM(c) } @@ -159,7 +157,3 @@ func (c *CardBrainBoard) peek(address uint16) uint8 { func (c *CardBrainBoard) poke(address uint16, value uint8) { // Nothing } - -func (c *CardBrainBoard) setBase(base uint16) { - // Nothing -} diff --git a/cardBrainBoard2.go b/cardBrainBoard2.go index 28a89b0..188c17f 100644 --- a/cardBrainBoard2.go +++ b/cardBrainBoard2.go @@ -120,7 +120,3 @@ func (c *CardBrainBoardII) peek(address uint16) uint8 { func (c *CardBrainBoardII) poke(address uint16, value uint8) { // Nothing } - -func (c *CardBrainBoardII) setBase(base uint16) { - // Nothing -} diff --git a/cardMultiRom.go b/cardMultiRom.go index d7028b2..7f30b81 100644 --- a/cardMultiRom.go +++ b/cardMultiRom.go @@ -105,7 +105,3 @@ func (c *MultiRomCard) peek(address uint16) uint8 { func (c *MultiRomCard) poke(address uint16, value uint8) { // Nothing } - -func (c *MultiRomCard) setBase(base uint16) { - // Nothing -} diff --git a/cardSwyft.go b/cardSwyft.go index da04c00..bbf1bde 100644 --- a/cardSwyft.go +++ b/cardSwyft.go @@ -135,7 +135,3 @@ func (c *CardSwyft) peek(address uint16) uint8 { func (c *CardSwyft) poke(address uint16, value uint8) { // Nothing } - -func (c *CardSwyft) setBase(base uint16) { - // Nothing -} diff --git a/cardVidex.go b/cardVidex.go index 96dddc0..1841149 100644 --- a/cardVidex.go +++ b/cardVidex.go @@ -123,10 +123,6 @@ func (c *CardVidex) poke(address uint16, value uint8) { } } -func (c *CardVidex) setBase(base uint16) { - // Nothing -} - const ( videxCharWidth = uint8(8) ) diff --git a/ioC0Page.go b/ioC0Page.go index 13d0416..0b56e31 100644 --- a/ioC0Page.go +++ b/ioC0Page.go @@ -164,10 +164,6 @@ func (p *ioC0Page) poke(address uint16, value uint8) { ss(value) } -func (p *ioC0Page) setBase(_ uint16) { - // Ignore -} - func ssFromBool(value bool) uint8 { if value { return ssOn diff --git a/memoryManager.go b/memoryManager.go index 7b48ca3..c455e9e 100644 --- a/memoryManager.go +++ b/memoryManager.go @@ -68,7 +68,6 @@ const ( type memoryHandler interface { peek(uint16) uint8 poke(uint16, uint8) - setBase(uint16) } func newMemoryManager(a *Apple2) *memoryManager { diff --git a/noSlotClockDS1216.go b/noSlotClockDS1216.go index 0b3deed..6197d53 100644 --- a/noSlotClockDS1216.go +++ b/noSlotClockDS1216.go @@ -141,10 +141,6 @@ func (nsc *noSlotClockDS1216) poke(address uint16, value uint8) { nsc.memory.poke(address, value) } -func (nsc *noSlotClockDS1216) setBase(base uint16) { - nsc.memory.setBase(base) -} - func (nsc *noSlotClockDS1216) loadTime() { now := time.Now()