├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CMakeLists.txt ├── Common ├── CMakeLists.txt └── include │ └── Common │ ├── Config │ └── Config.h │ └── Util │ ├── BitUtil.h │ └── Shifts.h ├── Frontend ├── CMakeLists.txt └── src │ ├── Factories │ └── ArchimedesFactory.cpp │ └── Main.cpp ├── LICENSE ├── Processors ├── Arm │ ├── Arm │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Arm │ │ │ │ ├── Arm.h │ │ │ │ ├── Assembler.h │ │ │ │ └── Disassembler.h │ │ ├── private │ │ │ ├── Assembler │ │ │ │ ├── Assembler_Impl.h │ │ │ │ └── SourceLine.h │ │ │ └── Common │ │ │ │ ├── BitUtil.h │ │ │ │ ├── Constants.h │ │ │ │ ├── Decode.h │ │ │ │ ├── Encode.h │ │ │ │ ├── Shifts.h │ │ │ │ └── SignExtend.h │ │ └── src │ │ │ ├── Arm │ │ │ ├── Arm.cpp │ │ │ ├── Arm_BlockDataTransferLoad.cpp │ │ │ ├── Arm_BlockDataTransferStore.cpp │ │ │ ├── Arm_Branch.cpp │ │ │ ├── Arm_CoprocessorDataOperation.cpp │ │ │ ├── Arm_CoprocessorDataTransfer.cpp │ │ │ ├── Arm_CoprocessorRegisterTransfer.cpp │ │ │ ├── Arm_DataProcessing.cpp │ │ │ ├── Arm_DataProcessingImmediate.cpp │ │ │ ├── Arm_DataProcessingInstructionShift.cpp │ │ │ ├── Arm_DataProcessingRegisterShift.cpp │ │ │ ├── Arm_SingleDataTransferImmediateLoad.cpp │ │ │ ├── Arm_SingleDataTransferImmediateStore.cpp │ │ │ ├── Arm_SingleDataTransferRegisterLoad.cpp │ │ │ └── Arm_SingleDataTransferRegisterStore.cpp │ │ │ ├── Assembler │ │ │ ├── Assembler.cpp │ │ │ ├── Assembler_BlockDataTransfer.cpp │ │ │ ├── Assembler_Branch.cpp │ │ │ ├── Assembler_ConditionCode.cpp │ │ │ ├── Assembler_Coprocessor.cpp │ │ │ ├── Assembler_CoprocessorDataOperations.cpp │ │ │ ├── Assembler_CoprocessorDataTransfer.cpp │ │ │ ├── Assembler_CoprocessorRegisterTransfers.cpp │ │ │ ├── Assembler_DataProcessing.cpp │ │ │ ├── Assembler_Impl.cpp │ │ │ ├── Assembler_Multiply.cpp │ │ │ ├── Assembler_Number.cpp │ │ │ ├── Assembler_Operand2.cpp │ │ │ ├── Assembler_SingleDataTransfer.cpp │ │ │ ├── Assembler_SoftwareInterrupt.cpp │ │ │ ├── Assembler_Swap.cpp │ │ │ └── SourceLine.cpp │ │ │ └── Disassembler │ │ │ └── Disassembler.cpp │ ├── CMakeLists.txt │ └── Tests │ │ ├── CMakeLists.txt │ │ ├── include │ │ ├── Arm │ │ │ └── ArmTest.h │ │ ├── Common │ │ │ └── BitUtil.h │ │ └── Data │ │ │ ├── Assembler │ │ │ ├── AssemblerNegativeParameter.h │ │ │ ├── AssemblerPositiveParameter.h │ │ │ ├── BlockTransferNegatives.h │ │ │ ├── ConditionCodesPositives.h │ │ │ ├── Operand2Negatives.h │ │ │ ├── Operand2Positives.h │ │ │ └── SingleDataTransferNegatives.h │ │ │ └── Common │ │ │ ├── BlockDataTransfer.h │ │ │ ├── Branch.h │ │ │ ├── CommonParameter.h │ │ │ ├── CoprocessorDataOperation.h │ │ │ ├── CoprocessorDataTransfer.h │ │ │ ├── CoprocessorRegisterTransfer.h │ │ │ ├── DataProcessing.h │ │ │ ├── Multiply.h │ │ │ ├── SingleDataTransfer.h │ │ │ ├── SoftwareInterrupt.h │ │ │ └── Swap.h │ │ └── src │ │ ├── Arm │ │ ├── ArmTest.cpp │ │ ├── BlockDataTransfer │ │ │ ├── Load │ │ │ │ ├── PostIndexed │ │ │ │ │ ├── LoadMultipleDecrementAfter.cpp │ │ │ │ │ └── LoadMultipleIncrementAfter.cpp │ │ │ │ ├── PostIndexedWriteback │ │ │ │ │ ├── LoadMultipleDecrementAfterWriteback.cpp │ │ │ │ │ └── LoadMultipleIncrementAfterWriteback.cpp │ │ │ │ ├── PreIndexed │ │ │ │ │ ├── LoadMultipleDecrementBefore.cpp │ │ │ │ │ └── LoadMultipleIncrementBefore.cpp │ │ │ │ └── PreIndexedWriteback │ │ │ │ │ ├── LoadMultipleDecrementBeforeWriteback.cpp │ │ │ │ │ └── LoadMultipleIncrementBeforeWriteback.cpp │ │ │ └── Store │ │ │ │ ├── PostIndexed │ │ │ │ ├── StoreMultipleDecrementAfter.cpp │ │ │ │ └── StoreMultipleIncrementAfter.cpp │ │ │ │ ├── PostIndexedWriteback │ │ │ │ ├── StoreMultipleDecrementAfterWriteback.cpp │ │ │ │ └── StoreMultipleIncrementAfterWriteback.cpp │ │ │ │ ├── PreIndexed │ │ │ │ ├── StoreMultipleDecrementBefore.cpp │ │ │ │ └── StoreMultipleIncrementBefore.cpp │ │ │ │ └── PreIndexedWriteback │ │ │ │ ├── StoreMultipleDecrementBeforeWriteback.cpp │ │ │ │ └── StoreMultipleIncrementBeforeWriteback.cpp │ │ ├── Branch │ │ │ ├── Branch.cpp │ │ │ └── BranchWithLink.cpp │ │ ├── ConditionCodes │ │ │ ├── ConditionCodeAL.cpp │ │ │ ├── ConditionCodeCC.cpp │ │ │ ├── ConditionCodeCS.cpp │ │ │ ├── ConditionCodeEQ.cpp │ │ │ ├── ConditionCodeGE.cpp │ │ │ ├── ConditionCodeGT.cpp │ │ │ ├── ConditionCodeHI.cpp │ │ │ ├── ConditionCodeLE.cpp │ │ │ ├── ConditionCodeLS.cpp │ │ │ ├── ConditionCodeLT.cpp │ │ │ ├── ConditionCodeMI.cpp │ │ │ ├── ConditionCodeNE.cpp │ │ │ ├── ConditionCodeNV.cpp │ │ │ ├── ConditionCodePL.cpp │ │ │ ├── ConditionCodeVC.cpp │ │ │ └── ConditionCodeVS.cpp │ │ ├── CoprocessorDataOperation │ │ │ └── CoprocessorDataOperation.cpp │ │ ├── CoprocessorDataTransfer │ │ │ ├── LoadCoprocessorLongForm.cpp │ │ │ ├── LoadCoprocessorShortForm.cpp │ │ │ ├── StoreCoprocessorLongForm.cpp │ │ │ └── StoreCoprocessorShortForm.cpp │ │ ├── CoprocessorRegisterTransfer │ │ │ ├── MoveRegisterFromCoprocessor.cpp │ │ │ └── MoveRegisterToCoprocessor.cpp │ │ ├── DataProcessingImmediate │ │ │ ├── BarrelShifter │ │ │ │ └── BarrelShifterImmediate.cpp │ │ │ └── Operations │ │ │ │ ├── AdcOperand2Immediate.cpp │ │ │ │ ├── AddOperand2Immediate.cpp │ │ │ │ ├── AndOperand2Immediate.cpp │ │ │ │ ├── BicOperand2Immediate.cpp │ │ │ │ ├── CmnOperand2Immediate.cpp │ │ │ │ ├── CmpOperand2Immediate.cpp │ │ │ │ ├── EorOperand2Immediate.cpp │ │ │ │ ├── MovOperand2Immediate.cpp │ │ │ │ ├── MvnOperand2Immediate.cpp │ │ │ │ ├── OrrOperand2Immediate.cpp │ │ │ │ ├── RsbOperand2Immediate.cpp │ │ │ │ ├── RscOperand2Immediate.cpp │ │ │ │ ├── SbcOperand2Immediate.cpp │ │ │ │ ├── SubOperand2Immediate.cpp │ │ │ │ ├── TeqOperand2Immediate.cpp │ │ │ │ └── TstOperand2Immediate.cpp │ │ ├── DataProcessingInstructionShift │ │ │ ├── BarrelShifter │ │ │ │ ├── BarrelShifterInstructionShiftASR.cpp │ │ │ │ ├── BarrelShifterInstructionShiftLSL.cpp │ │ │ │ ├── BarrelShifterInstructionShiftLSR.cpp │ │ │ │ ├── BarrelShifterInstructionShiftROR.cpp │ │ │ │ └── BarrelShifterInstructionShiftRRX.cpp │ │ │ └── Operations │ │ │ │ ├── AdcOperand2InstructionShift.cpp │ │ │ │ ├── AddOperand2InstructionShift.cpp │ │ │ │ ├── AndOperand2InstructionShift.cpp │ │ │ │ ├── BicOperand2InstructionShift.cpp │ │ │ │ ├── CmnOperand2InstructionShift.cpp │ │ │ │ ├── CmpOperand2InstructionShift.cpp │ │ │ │ ├── EorOperand2InstructionShift.cpp │ │ │ │ ├── MovOperand2InstructionShift.cpp │ │ │ │ ├── MvnOperand2InstructionShift.cpp │ │ │ │ ├── OrrOperand2InstructionShift.cpp │ │ │ │ ├── RsbOperand2InstructionShift.cpp │ │ │ │ ├── RscOperand2InstructionShift.cpp │ │ │ │ ├── SbcOperand2InstructionShift.cpp │ │ │ │ ├── SubOperand2InstructionShift.cpp │ │ │ │ ├── TeqOperand2InstructionShift.cpp │ │ │ │ └── TstOperand2InstructionShift.cpp │ │ ├── DataProcessingRegisterShift │ │ │ ├── BarrelShifter │ │ │ │ ├── BarrelShifterRegisterShiftASR.cpp │ │ │ │ ├── BarrelShifterRegisterShiftLSL.cpp │ │ │ │ ├── BarrelShifterRegisterShiftLSR.cpp │ │ │ │ └── BarrelShifterRegisterShiftROR.cpp │ │ │ └── Operations │ │ │ │ ├── AdcOperand2RegisterShift.cpp │ │ │ │ ├── AddOperand2RegisterShift.cpp │ │ │ │ ├── AndOperand2RegisterShift.cpp │ │ │ │ ├── BicOperand2RegisterShift.cpp │ │ │ │ ├── CmnOperand2RegisterShift.cpp │ │ │ │ ├── CmpOperand2RegisterShift.cpp │ │ │ │ ├── EorOperand2RegisterShift.cpp │ │ │ │ ├── MovOperand2RegisterShift.cpp │ │ │ │ ├── MvnOperand2RegisterShift.cpp │ │ │ │ ├── OrrOperand2RegisterShift.cpp │ │ │ │ ├── RsbOperand2RegisterShift.cpp │ │ │ │ ├── RscOperand2RegisterShift.cpp │ │ │ │ ├── SbcOperand2RegisterShift.cpp │ │ │ │ ├── SubOperand2RegisterShift.cpp │ │ │ │ ├── TeqOperand2RegisterShift.cpp │ │ │ │ └── TstOperand2RegisterShift.cpp │ │ ├── Exceptions │ │ │ ├── AddressException.cpp │ │ │ ├── DataAbort.cpp │ │ │ ├── FastInterrupt.cpp │ │ │ ├── Interrupt.cpp │ │ │ ├── PrefetchAbort.cpp │ │ │ └── UndefinedInstruction.cpp │ │ ├── Multiply │ │ │ ├── Operations │ │ │ │ ├── Multiply.cpp │ │ │ │ └── MultiplyAccumulate.cpp │ │ │ └── Timing │ │ │ │ ├── MultiplyAccumulateTiming.cpp │ │ │ │ └── MultiplyTiming.cpp │ │ ├── SingleDataTransferImmediate │ │ │ ├── Load │ │ │ │ ├── PostIndexed │ │ │ │ │ ├── LoadByteImmediatePostIndexed.cpp │ │ │ │ │ └── LoadWordImmediatePostIndexed.cpp │ │ │ │ ├── PostIndexedUserMode │ │ │ │ │ ├── LoadByteImmediatePostIndexedUserMode.cpp │ │ │ │ │ └── LoadWordImmediatePostIndexedUserMode.cpp │ │ │ │ ├── PreIndexed │ │ │ │ │ ├── LoadByteImmediatePreIndexed.cpp │ │ │ │ │ └── LoadWordImmediatePreIndexed.cpp │ │ │ │ └── PreIndexedWriteback │ │ │ │ │ ├── LoadByteImmediatePreIndexedWriteback.cpp │ │ │ │ │ └── LoadWordImmediatePreIndexedWriteback.cpp │ │ │ └── Store │ │ │ │ ├── PostIndexed │ │ │ │ ├── StoreByteImmediatePostIndexed.cpp │ │ │ │ └── StoreWordImmediatePostIndexed.cpp │ │ │ │ ├── PostIndexedUserMode │ │ │ │ ├── StoreByteImmediatePostIndexedUserMode.cpp │ │ │ │ └── StoreWordImmediatePostIndexedUserMode.cpp │ │ │ │ ├── PreIndexed │ │ │ │ ├── StoreByteImmediatePreIndexed.cpp │ │ │ │ └── StoreWordImmediatePreIndexed.cpp │ │ │ │ └── PreIndexedWriteback │ │ │ │ ├── StoreByteImmediatePreIndexedWriteback.cpp │ │ │ │ └── StoreWordImmediatePreIndexedWriteback.cpp │ │ ├── SingleDataTransferRegister │ │ │ ├── Load │ │ │ │ ├── PostIndexed │ │ │ │ │ ├── LoadByteRegisterPostIndexed.cpp │ │ │ │ │ └── LoadWordRegisterPostIndexed.cpp │ │ │ │ ├── PostIndexedUserMode │ │ │ │ │ ├── LoadByteRegisterPostIndexedUserMode.cpp │ │ │ │ │ └── LoadWordRegisterPostIndexedUserMode.cpp │ │ │ │ ├── PreIndexed │ │ │ │ │ ├── LoadByteRegisterPreIndexed.cpp │ │ │ │ │ └── LoadWordRegisterPreIndexed.cpp │ │ │ │ └── PreIndexedWriteback │ │ │ │ │ ├── LoadByteRegisterPreIndexedWriteback.cpp │ │ │ │ │ └── LoadWordRegisterPreIndexedWriteback.cpp │ │ │ └── Store │ │ │ │ ├── PostIndexed │ │ │ │ ├── StoreByteRegisterPostIndexed.cpp │ │ │ │ └── StoreWordRegisterPostIndexed.cpp │ │ │ │ ├── PostIndexedUserMode │ │ │ │ ├── StoreByteRegisterPostIndexedUserMode.cpp │ │ │ │ └── StoreWordRegisterPostIndexedUserMode.cpp │ │ │ │ ├── PreIndexed │ │ │ │ ├── StoreByteRegisterPreIndexed.cpp │ │ │ │ └── StoreWordRegisterPreIndexed.cpp │ │ │ │ └── PreIndexedWriteback │ │ │ │ ├── StoreByteRegisterPreIndexedWriteback.cpp │ │ │ │ └── StoreWordRegisterPreIndexedWriteback.cpp │ │ └── SoftwareInterrupt │ │ │ └── SoftwareInterrupt.cpp │ │ ├── Assembler │ │ ├── AssemblerNegativeTest.cpp │ │ └── AssemblerPositiveTest.cpp │ │ └── Disassembler │ │ └── DisassemblerPositiveTest.cpp └── CMakeLists.txt ├── README.md ├── Systems ├── Archimedes │ ├── CMakeLists.txt │ ├── include │ │ └── Archimedes │ │ │ ├── Archimedes.h │ │ │ ├── ArchimedesConfiguration.h │ │ │ ├── ArchimedesDiscImage.h │ │ │ ├── ArchimedesIoc.h │ │ │ ├── ArchimedesKeyboard.h │ │ │ ├── ArchimedesMediator.h │ │ │ ├── ArchimedesMemc.h │ │ │ ├── ArchimedesTimer.h │ │ │ ├── ArchimedesVidc.h │ │ │ ├── I2CBus.h │ │ │ ├── I2CController.h │ │ │ ├── RTC8583.h │ │ │ └── WDC1772.h │ └── src │ │ ├── Archimedes.cpp │ │ ├── ArchimedesDiscImage.cpp │ │ ├── ArchimedesIoc.cpp │ │ ├── ArchimedesKeyboard.cpp │ │ ├── ArchimedesKeyboardConfiguration.cpp │ │ ├── ArchimedesMemc.cpp │ │ ├── ArchimedesVidc.cpp │ │ ├── ArchimedesVidc_Fifo.cpp │ │ ├── I2CController.cpp │ │ ├── RTC8583.cpp │ │ └── WDC1772.cpp └── CMakeLists.txt ├── Tests ├── CMakeLists.txt └── Systems │ ├── Archimedes │ ├── CMakeLists.txt │ ├── include │ │ └── Archimedes │ │ │ ├── ArchimedesMock.h │ │ │ ├── IocTest.h │ │ │ ├── KeyboardTest.h │ │ │ ├── MemcTest.h │ │ │ ├── RTC8583Test.h │ │ │ └── WDC1772Test.h │ └── src │ │ ├── Ioc │ │ ├── BankTest.cpp │ │ ├── InternalRegisterByteTest.cpp │ │ ├── InternalRegisterWordTest.cpp │ │ ├── InterruptEvents.cpp │ │ └── IocTest.cpp │ │ ├── Keyboard │ │ ├── BothScan.cpp │ │ ├── KeyboardScan.cpp │ │ ├── KeyboardTest.cpp │ │ ├── MouseScan.cpp │ │ ├── NoScan.cpp │ │ └── ResetProtocol.cpp │ │ ├── Memc │ │ ├── AccessTiming.cpp │ │ ├── AddressTranslator.cpp │ │ ├── ControlRegister.cpp │ │ ├── Dma.cpp │ │ ├── DmaAddressGenerator.cpp │ │ ├── FlyBack.cpp │ │ ├── HighRom.cpp │ │ ├── InputOutputController.cpp │ │ ├── LogicalMemoryFourMegabytes.cpp │ │ ├── LogicalMemoryHalfMegabyte.cpp │ │ ├── LogicalMemoryOneMegabyte.cpp │ │ ├── LogicalMemoryTwoMegabytes.cpp │ │ ├── LowRom.cpp │ │ ├── MemcTest.cpp │ │ ├── PhysicalMemory.cpp │ │ ├── Reset.cpp │ │ └── VideoController.cpp │ │ ├── RTC8583 │ │ ├── RTC8583Test.cpp │ │ └── RTC8583Transactions.cpp │ │ └── WDC1772 │ │ ├── ForceInterrupts.cpp │ │ ├── ReadAddresses.cpp │ │ ├── ReadSectors.cpp │ │ ├── Registers.cpp │ │ ├── Restores.cpp │ │ ├── Seeks.cpp │ │ ├── StepIns.cpp │ │ ├── StepOuts.cpp │ │ ├── Steps.cpp │ │ ├── WDC1772Test.cpp │ │ └── WriteSectors.cpp │ └── CMakeLists.txt ├── Toolkit ├── CMakeLists.txt ├── include │ └── Toolkit │ │ └── Toolkit.h └── src │ ├── Toolkit.cpp │ ├── Toolkit_File.cpp │ ├── Toolkit_PresentationContext.cpp │ └── Toolkit_ZipFile.cpp └── media ├── artworks-apple.png ├── pushy-2.png └── star-fighter-3000-demo.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Common/include/Common/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Common/include/Common/Config/Config.h -------------------------------------------------------------------------------- /Common/include/Common/Util/BitUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Common/include/Common/Util/BitUtil.h -------------------------------------------------------------------------------- /Common/include/Common/Util/Shifts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Common/include/Common/Util/Shifts.h -------------------------------------------------------------------------------- /Frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Frontend/CMakeLists.txt -------------------------------------------------------------------------------- /Frontend/src/Factories/ArchimedesFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Frontend/src/Factories/ArchimedesFactory.cpp -------------------------------------------------------------------------------- /Frontend/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Frontend/src/Main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/LICENSE -------------------------------------------------------------------------------- /Processors/Arm/Arm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/CMakeLists.txt -------------------------------------------------------------------------------- /Processors/Arm/Arm/include/Arm/Arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/include/Arm/Arm.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/include/Arm/Assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/include/Arm/Assembler.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/include/Arm/Disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/include/Arm/Disassembler.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Assembler/Assembler_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Assembler/Assembler_Impl.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Assembler/SourceLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Assembler/SourceLine.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Common/BitUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Common/BitUtil.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Common/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Common/Constants.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Common/Decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Common/Decode.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Common/Encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Common/Encode.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Common/Shifts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Common/Shifts.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/private/Common/SignExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/private/Common/SignExtend.h -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_BlockDataTransferLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_BlockDataTransferLoad.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_BlockDataTransferStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_BlockDataTransferStore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_Branch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_Branch.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_CoprocessorDataOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_CoprocessorDataOperation.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_CoprocessorDataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_CoprocessorDataTransfer.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_CoprocessorRegisterTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_CoprocessorRegisterTransfer.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_DataProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_DataProcessing.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_DataProcessingImmediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_DataProcessingImmediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_DataProcessingInstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_DataProcessingInstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_DataProcessingRegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_DataProcessingRegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferImmediateLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferImmediateLoad.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferImmediateStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferImmediateStore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferRegisterLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferRegisterLoad.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferRegisterStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Arm/Arm_SingleDataTransferRegisterStore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_BlockDataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_BlockDataTransfer.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Branch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Branch.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_ConditionCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_ConditionCode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Coprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Coprocessor.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_CoprocessorDataOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_CoprocessorDataOperations.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_CoprocessorDataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_CoprocessorDataTransfer.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_CoprocessorRegisterTransfers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_CoprocessorRegisterTransfers.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_DataProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_DataProcessing.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Impl.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Multiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Multiply.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Number.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Operand2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Operand2.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_SingleDataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_SingleDataTransfer.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_SoftwareInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_SoftwareInterrupt.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/Assembler_Swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/Assembler_Swap.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Assembler/SourceLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Assembler/SourceLine.cpp -------------------------------------------------------------------------------- /Processors/Arm/Arm/src/Disassembler/Disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Arm/src/Disassembler/Disassembler.cpp -------------------------------------------------------------------------------- /Processors/Arm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/CMakeLists.txt -------------------------------------------------------------------------------- /Processors/Arm/Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Arm/ArmTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Arm/ArmTest.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Common/BitUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Common/BitUtil.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/AssemblerNegativeParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/AssemblerNegativeParameter.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/AssemblerPositiveParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/AssemblerPositiveParameter.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/BlockTransferNegatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/BlockTransferNegatives.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/ConditionCodesPositives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/ConditionCodesPositives.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/Operand2Negatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/Operand2Negatives.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/Operand2Positives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/Operand2Positives.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Assembler/SingleDataTransferNegatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Assembler/SingleDataTransferNegatives.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/BlockDataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/BlockDataTransfer.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/Branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/Branch.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/CommonParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/CommonParameter.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/CoprocessorDataOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/CoprocessorDataOperation.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/CoprocessorDataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/CoprocessorDataTransfer.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/CoprocessorRegisterTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/CoprocessorRegisterTransfer.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/DataProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/DataProcessing.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/Multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/Multiply.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/SingleDataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/SingleDataTransfer.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/SoftwareInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/SoftwareInterrupt.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/include/Data/Common/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/include/Data/Common/Swap.h -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ArmTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ArmTest.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexed/LoadMultipleDecrementAfter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexed/LoadMultipleDecrementAfter.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexed/LoadMultipleIncrementAfter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexed/LoadMultipleIncrementAfter.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexedWriteback/LoadMultipleDecrementAfterWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexedWriteback/LoadMultipleDecrementAfterWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexedWriteback/LoadMultipleIncrementAfterWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PostIndexedWriteback/LoadMultipleIncrementAfterWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexed/LoadMultipleDecrementBefore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexed/LoadMultipleDecrementBefore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexed/LoadMultipleIncrementBefore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexed/LoadMultipleIncrementBefore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexedWriteback/LoadMultipleDecrementBeforeWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexedWriteback/LoadMultipleDecrementBeforeWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexedWriteback/LoadMultipleIncrementBeforeWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Load/PreIndexedWriteback/LoadMultipleIncrementBeforeWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexed/StoreMultipleDecrementAfter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexed/StoreMultipleDecrementAfter.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexed/StoreMultipleIncrementAfter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexed/StoreMultipleIncrementAfter.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexedWriteback/StoreMultipleDecrementAfterWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexedWriteback/StoreMultipleDecrementAfterWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexedWriteback/StoreMultipleIncrementAfterWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PostIndexedWriteback/StoreMultipleIncrementAfterWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexed/StoreMultipleDecrementBefore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexed/StoreMultipleDecrementBefore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexed/StoreMultipleIncrementBefore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexed/StoreMultipleIncrementBefore.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexedWriteback/StoreMultipleDecrementBeforeWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexedWriteback/StoreMultipleDecrementBeforeWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexedWriteback/StoreMultipleIncrementBeforeWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/BlockDataTransfer/Store/PreIndexedWriteback/StoreMultipleIncrementBeforeWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Branch/Branch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Branch/Branch.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Branch/BranchWithLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Branch/BranchWithLink.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeAL.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeCC.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeCS.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeEQ.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeGE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeGE.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeGT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeGT.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeHI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeHI.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeLE.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeLS.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeLT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeLT.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeMI.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeNE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeNE.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeNV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeNV.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodePL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodePL.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeVC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeVC.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeVS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/ConditionCodes/ConditionCodeVS.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorDataOperation/CoprocessorDataOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorDataOperation/CoprocessorDataOperation.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/LoadCoprocessorLongForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/LoadCoprocessorLongForm.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/LoadCoprocessorShortForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/LoadCoprocessorShortForm.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/StoreCoprocessorLongForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/StoreCoprocessorLongForm.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/StoreCoprocessorShortForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorDataTransfer/StoreCoprocessorShortForm.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorRegisterTransfer/MoveRegisterFromCoprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorRegisterTransfer/MoveRegisterFromCoprocessor.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/CoprocessorRegisterTransfer/MoveRegisterToCoprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/CoprocessorRegisterTransfer/MoveRegisterToCoprocessor.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/BarrelShifter/BarrelShifterImmediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/BarrelShifter/BarrelShifterImmediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/AdcOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/AdcOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/AddOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/AddOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/AndOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/AndOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/BicOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/BicOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/CmnOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/CmnOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/CmpOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/CmpOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/EorOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/EorOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/MovOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/MovOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/MvnOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/MvnOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/OrrOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/OrrOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/RsbOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/RsbOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/RscOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/RscOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/SbcOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/SbcOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/SubOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/SubOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/TeqOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/TeqOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/TstOperand2Immediate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingImmediate/Operations/TstOperand2Immediate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftASR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftASR.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftLSL.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftLSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftLSR.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftROR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftROR.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftRRX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/BarrelShifter/BarrelShifterInstructionShiftRRX.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/AdcOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/AdcOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/AddOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/AddOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/AndOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/AndOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/BicOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/BicOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/CmnOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/CmnOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/CmpOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/CmpOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/EorOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/EorOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/MovOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/MovOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/MvnOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/MvnOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/OrrOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/OrrOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/RsbOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/RsbOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/RscOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/RscOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/SbcOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/SbcOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/SubOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/SubOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/TeqOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/TeqOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/TstOperand2InstructionShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingInstructionShift/Operations/TstOperand2InstructionShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftASR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftASR.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftLSL.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftLSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftLSR.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftROR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/BarrelShifter/BarrelShifterRegisterShiftROR.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/AdcOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/AdcOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/AddOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/AddOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/AndOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/AndOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/BicOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/BicOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/CmnOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/CmnOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/CmpOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/CmpOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/EorOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/EorOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/MovOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/MovOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/MvnOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/MvnOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/OrrOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/OrrOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/RsbOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/RsbOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/RscOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/RscOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/SbcOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/SbcOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/SubOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/SubOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/TeqOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/TeqOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/TstOperand2RegisterShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/DataProcessingRegisterShift/Operations/TstOperand2RegisterShift.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Exceptions/AddressException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Exceptions/AddressException.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Exceptions/DataAbort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Exceptions/DataAbort.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Exceptions/FastInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Exceptions/FastInterrupt.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Exceptions/Interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Exceptions/Interrupt.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Exceptions/PrefetchAbort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Exceptions/PrefetchAbort.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Exceptions/UndefinedInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Exceptions/UndefinedInstruction.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Multiply/Operations/Multiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Multiply/Operations/Multiply.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Multiply/Operations/MultiplyAccumulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Multiply/Operations/MultiplyAccumulate.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Multiply/Timing/MultiplyAccumulateTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Multiply/Timing/MultiplyAccumulateTiming.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/Multiply/Timing/MultiplyTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/Multiply/Timing/MultiplyTiming.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexed/LoadByteImmediatePostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexed/LoadByteImmediatePostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexed/LoadWordImmediatePostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexed/LoadWordImmediatePostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexedUserMode/LoadByteImmediatePostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexedUserMode/LoadByteImmediatePostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexedUserMode/LoadWordImmediatePostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PostIndexedUserMode/LoadWordImmediatePostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexed/LoadByteImmediatePreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexed/LoadByteImmediatePreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexed/LoadWordImmediatePreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexed/LoadWordImmediatePreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexedWriteback/LoadByteImmediatePreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexedWriteback/LoadByteImmediatePreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexedWriteback/LoadWordImmediatePreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Load/PreIndexedWriteback/LoadWordImmediatePreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexed/StoreByteImmediatePostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexed/StoreByteImmediatePostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexed/StoreWordImmediatePostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexed/StoreWordImmediatePostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexedUserMode/StoreByteImmediatePostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexedUserMode/StoreByteImmediatePostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexedUserMode/StoreWordImmediatePostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PostIndexedUserMode/StoreWordImmediatePostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexed/StoreByteImmediatePreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexed/StoreByteImmediatePreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexed/StoreWordImmediatePreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexed/StoreWordImmediatePreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexedWriteback/StoreByteImmediatePreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexedWriteback/StoreByteImmediatePreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexedWriteback/StoreWordImmediatePreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferImmediate/Store/PreIndexedWriteback/StoreWordImmediatePreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexed/LoadByteRegisterPostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexed/LoadByteRegisterPostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexed/LoadWordRegisterPostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexed/LoadWordRegisterPostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexedUserMode/LoadByteRegisterPostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexedUserMode/LoadByteRegisterPostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexedUserMode/LoadWordRegisterPostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PostIndexedUserMode/LoadWordRegisterPostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexed/LoadByteRegisterPreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexed/LoadByteRegisterPreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexed/LoadWordRegisterPreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexed/LoadWordRegisterPreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexedWriteback/LoadByteRegisterPreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexedWriteback/LoadByteRegisterPreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexedWriteback/LoadWordRegisterPreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Load/PreIndexedWriteback/LoadWordRegisterPreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexed/StoreByteRegisterPostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexed/StoreByteRegisterPostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexed/StoreWordRegisterPostIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexed/StoreWordRegisterPostIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexedUserMode/StoreByteRegisterPostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexedUserMode/StoreByteRegisterPostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexedUserMode/StoreWordRegisterPostIndexedUserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PostIndexedUserMode/StoreWordRegisterPostIndexedUserMode.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexed/StoreByteRegisterPreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexed/StoreByteRegisterPreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexed/StoreWordRegisterPreIndexed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexed/StoreWordRegisterPreIndexed.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexedWriteback/StoreByteRegisterPreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexedWriteback/StoreByteRegisterPreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexedWriteback/StoreWordRegisterPreIndexedWriteback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SingleDataTransferRegister/Store/PreIndexedWriteback/StoreWordRegisterPreIndexedWriteback.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Arm/SoftwareInterrupt/SoftwareInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Arm/SoftwareInterrupt/SoftwareInterrupt.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Assembler/AssemblerNegativeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Assembler/AssemblerNegativeTest.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Assembler/AssemblerPositiveTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Assembler/AssemblerPositiveTest.cpp -------------------------------------------------------------------------------- /Processors/Arm/Tests/src/Disassembler/DisassemblerPositiveTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Processors/Arm/Tests/src/Disassembler/DisassemblerPositiveTest.cpp -------------------------------------------------------------------------------- /Processors/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Arm) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/README.md -------------------------------------------------------------------------------- /Systems/Archimedes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/CMakeLists.txt -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/Archimedes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/Archimedes.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesConfiguration.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesDiscImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesDiscImage.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesIoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesIoc.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesKeyboard.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesMediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesMediator.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesMemc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesMemc.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesTimer.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/ArchimedesVidc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/ArchimedesVidc.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/I2CBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/I2CBus.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/I2CController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/I2CController.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/RTC8583.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/RTC8583.h -------------------------------------------------------------------------------- /Systems/Archimedes/include/Archimedes/WDC1772.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/include/Archimedes/WDC1772.h -------------------------------------------------------------------------------- /Systems/Archimedes/src/Archimedes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/Archimedes.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesDiscImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesDiscImage.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesIoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesIoc.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesKeyboard.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesKeyboardConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesKeyboardConfiguration.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesMemc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesMemc.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesVidc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesVidc.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/ArchimedesVidc_Fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/ArchimedesVidc_Fifo.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/I2CController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/I2CController.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/RTC8583.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/RTC8583.cpp -------------------------------------------------------------------------------- /Systems/Archimedes/src/WDC1772.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Systems/Archimedes/src/WDC1772.cpp -------------------------------------------------------------------------------- /Systems/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Archimedes) -------------------------------------------------------------------------------- /Tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Systems) -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/include/Archimedes/ArchimedesMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/include/Archimedes/ArchimedesMock.h -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/include/Archimedes/IocTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/include/Archimedes/IocTest.h -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/include/Archimedes/KeyboardTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/include/Archimedes/KeyboardTest.h -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/include/Archimedes/MemcTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/include/Archimedes/MemcTest.h -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/include/Archimedes/RTC8583Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/include/Archimedes/RTC8583Test.h -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/include/Archimedes/WDC1772Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/include/Archimedes/WDC1772Test.h -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Ioc/BankTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Ioc/BankTest.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Ioc/InternalRegisterByteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Ioc/InternalRegisterByteTest.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Ioc/InternalRegisterWordTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Ioc/InternalRegisterWordTest.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Ioc/InterruptEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Ioc/InterruptEvents.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Ioc/IocTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Ioc/IocTest.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Keyboard/BothScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Keyboard/BothScan.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Keyboard/KeyboardScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Keyboard/KeyboardScan.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Keyboard/KeyboardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Keyboard/KeyboardTest.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Keyboard/MouseScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Keyboard/MouseScan.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Keyboard/NoScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Keyboard/NoScan.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Keyboard/ResetProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Keyboard/ResetProtocol.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/AccessTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/AccessTiming.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/AddressTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/AddressTranslator.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/ControlRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/ControlRegister.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/Dma.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/DmaAddressGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/DmaAddressGenerator.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/FlyBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/FlyBack.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/HighRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/HighRom.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/InputOutputController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/InputOutputController.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/LogicalMemoryFourMegabytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/LogicalMemoryFourMegabytes.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/LogicalMemoryHalfMegabyte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/LogicalMemoryHalfMegabyte.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/LogicalMemoryOneMegabyte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/LogicalMemoryOneMegabyte.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/LogicalMemoryTwoMegabytes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/LogicalMemoryTwoMegabytes.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/LowRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/LowRom.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/MemcTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/MemcTest.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/PhysicalMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/PhysicalMemory.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/Reset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/Reset.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/Memc/VideoController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/Memc/VideoController.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/RTC8583/RTC8583Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/RTC8583/RTC8583Test.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/RTC8583/RTC8583Transactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/RTC8583/RTC8583Transactions.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/ForceInterrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/ForceInterrupts.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/ReadAddresses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/ReadAddresses.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/ReadSectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/ReadSectors.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/Registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/Registers.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/Restores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/Restores.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/Seeks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/Seeks.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/StepIns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/StepIns.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/StepOuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/StepOuts.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/Steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/Steps.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/WDC1772Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/WDC1772Test.cpp -------------------------------------------------------------------------------- /Tests/Systems/Archimedes/src/WDC1772/WriteSectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Tests/Systems/Archimedes/src/WDC1772/WriteSectors.cpp -------------------------------------------------------------------------------- /Tests/Systems/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Archimedes) -------------------------------------------------------------------------------- /Toolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Toolkit/CMakeLists.txt -------------------------------------------------------------------------------- /Toolkit/include/Toolkit/Toolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Toolkit/include/Toolkit/Toolkit.h -------------------------------------------------------------------------------- /Toolkit/src/Toolkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Toolkit/src/Toolkit.cpp -------------------------------------------------------------------------------- /Toolkit/src/Toolkit_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Toolkit/src/Toolkit_File.cpp -------------------------------------------------------------------------------- /Toolkit/src/Toolkit_PresentationContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Toolkit/src/Toolkit_PresentationContext.cpp -------------------------------------------------------------------------------- /Toolkit/src/Toolkit_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/Toolkit/src/Toolkit_ZipFile.cpp -------------------------------------------------------------------------------- /media/artworks-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/media/artworks-apple.png -------------------------------------------------------------------------------- /media/pushy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/media/pushy-2.png -------------------------------------------------------------------------------- /media/star-fighter-3000-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardBrown384/Eichhoernchen/HEAD/media/star-fighter-3000-demo.png --------------------------------------------------------------------------------