From 5db77a47659c565d7d4237fb5ed39bb662b0cc26 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Thu, 2 Jul 2020 22:03:47 -0400 Subject: [PATCH] temporarily turning off printer for teensy --- apple/applevm.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apple/applevm.cpp b/apple/applevm.cpp index b7655fe..448eff1 100644 --- a/apple/applevm.cpp +++ b/apple/applevm.cpp @@ -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);