temporarily turning off printer for teensy

This commit is contained in:
Jorj Bauer 2020-07-02 22:03:47 -04:00
parent 602dc8c707
commit 5db77a4765
1 changed files with 3 additions and 0 deletions

View File

@ -23,8 +23,11 @@ AppleVM::AppleVM()
keyboard = new AppleKeyboard((AppleMMU *)mmu);
#ifndef TEENSYDUINO
// Disabled for the Teensy due to RAM constraints
parallel = new ParallelCard();
((AppleMMU *)mmu)->setSlot(1, parallel);
#endif
hd32 = new HD32((AppleMMU *)mmu);
((AppleMMU *)mmu)->setSlot(7, hd32);