├── .gitignore ├── .gitmodules ├── .travis.yml ├── License.txt ├── README.md ├── examples ├── bottles.s ├── cat.s ├── mastermind.s ├── printf.s ├── printnum.s ├── printstr.s ├── pwd.s └── timertool.s ├── screenshot.png ├── src ├── Config.properties ├── META-INF │ └── MANIFEST.MF ├── PseudoOps-64.txt ├── PseudoOps.txt ├── Settings.properties ├── Syscall.properties ├── help │ ├── Acknowledgements.html │ ├── BugReportingHelp.html │ ├── Command.html │ ├── Debugging.html │ ├── ExceptionsHelp.html │ ├── History.html │ ├── IDE.html │ ├── Intro.html │ ├── Limits.html │ ├── MacrosHelp.html │ ├── SyscallHelpConclusion.html │ ├── SyscallHelpPrelude.html │ ├── SyscallMessageDialogError.gif │ ├── SyscallMessageDialogInformation.gif │ ├── SyscallMessageDialogQuestion.gif │ ├── SyscallMessageDialogWarning.gif │ └── Tools.html ├── images │ ├── ALUcontrol.png │ ├── Assemble16.png │ ├── Assemble22.png │ ├── Copy16.png │ ├── Copy22.png │ ├── Cut16.gif │ ├── Cut22.gif │ ├── Cut24.gif │ ├── Dump16.png │ ├── Dump22.png │ ├── Edit_tab.jpg │ ├── Execute_tab.jpg │ ├── Find16.png │ ├── Find22.png │ ├── Help16.png │ ├── Help22.png │ ├── MyBlank16.gif │ ├── MyBlank24.gif │ ├── New16.png │ ├── New22.png │ ├── Next22.png │ ├── Open16.png │ ├── Open22.png │ ├── Paste16.png │ ├── Paste22.png │ ├── Pause16.png │ ├── Pause22.png │ ├── Play16.png │ ├── Play22.png │ ├── Previous22.png │ ├── RISC-V.png │ ├── Redo16.png │ ├── Redo22.png │ ├── Reset16.png │ ├── Reset22.png │ ├── Save16.png │ ├── Save22.png │ ├── SaveAs16.png │ ├── SaveAs22.png │ ├── StepBack16.png │ ├── StepBack22.png │ ├── StepForward16.png │ ├── StepForward22.png │ ├── Stop16.png │ ├── Stop22.png │ ├── Undo16.png │ ├── Undo22.png │ ├── control.png │ ├── datapath.png │ └── register.png └── rars │ ├── AssemblyException.java │ ├── BreakpointException.java │ ├── ErrorList.java │ ├── ErrorMessage.java │ ├── ExitingException.java │ ├── Globals.java │ ├── Launch.java │ ├── ProgramStatement.java │ ├── RISCVprogram.java │ ├── Settings.java │ ├── SimulationException.java │ ├── WaitException.java │ ├── api │ ├── Options.java │ └── Program.java │ ├── assembler │ ├── Assembler.java │ ├── DataTypes.java │ ├── Directives.java │ ├── Macro.java │ ├── MacroPool.java │ ├── OperandFormat.java │ ├── SourceLine.java │ ├── Symbol.java │ ├── SymbolTable.java │ ├── Token.java │ ├── TokenList.java │ ├── TokenTypes.java │ └── Tokenizer.java │ ├── extras │ └── Documentation.java │ ├── riscv │ ├── AbstractSyscall.java │ ├── BasicInstruction.java │ ├── BasicInstructionFormat.java │ ├── ExtendedInstruction.java │ ├── Instruction.java │ ├── InstructionSet.java │ ├── SyscallLoader.java │ ├── SyscallNumberOverride.java │ ├── dump │ │ ├── AbstractDumpFormat.java │ │ ├── AsciiTextDumpFormat.java │ │ ├── BinaryDumpFormat.java │ │ ├── BinaryTextDumpFormat.java │ │ ├── DumpFormat.java │ │ ├── DumpFormatLoader.java │ │ ├── HexTextDumpFormat.java │ │ ├── IntelHexDumpFormat.java │ │ └── SegmentWindowDumpFormat.java │ ├── hardware │ │ ├── AccessNotice.java │ │ ├── AddressErrorException.java │ │ ├── ControlAndStatusRegisterFile.java │ │ ├── FloatingPointRegisterFile.java │ │ ├── InterruptController.java │ │ ├── LinkedRegister.java │ │ ├── MaskedRegister.java │ │ ├── Memory.java │ │ ├── MemoryAccessNotice.java │ │ ├── MemoryConfiguration.java │ │ ├── MemoryConfigurations.java │ │ ├── ReadOnlyRegister.java │ │ ├── Register.java │ │ ├── RegisterAccessNotice.java │ │ ├── RegisterBlock.java │ │ └── RegisterFile.java │ ├── instructions │ │ ├── ADD.java │ │ ├── ADDI.java │ │ ├── ADDIW.java │ │ ├── ADDW.java │ │ ├── AND.java │ │ ├── ANDI.java │ │ ├── AUIPC.java │ │ ├── Arithmetic.java │ │ ├── ArithmeticW.java │ │ ├── BEQ.java │ │ ├── BGE.java │ │ ├── BGEU.java │ │ ├── BLT.java │ │ ├── BLTU.java │ │ ├── BNE.java │ │ ├── Branch.java │ │ ├── CSRRC.java │ │ ├── CSRRCI.java │ │ ├── CSRRS.java │ │ ├── CSRRSI.java │ │ ├── CSRRW.java │ │ ├── CSRRWI.java │ │ ├── DIV.java │ │ ├── DIVU.java │ │ ├── DIVUW.java │ │ ├── DIVW.java │ │ ├── Double.java │ │ ├── EBREAK.java │ │ ├── ECALL.java │ │ ├── FADDD.java │ │ ├── FADDS.java │ │ ├── FCLASSD.java │ │ ├── FCLASSS.java │ │ ├── FCVTDL.java │ │ ├── FCVTDLU.java │ │ ├── FCVTDS.java │ │ ├── FCVTDW.java │ │ ├── FCVTDWU.java │ │ ├── FCVTLD.java │ │ ├── FCVTLS.java │ │ ├── FCVTLUD.java │ │ ├── FCVTLUS.java │ │ ├── FCVTSD.java │ │ ├── FCVTSL.java │ │ ├── FCVTSLU.java │ │ ├── FCVTSW.java │ │ ├── FCVTSWU.java │ │ ├── FCVTWD.java │ │ ├── FCVTWS.java │ │ ├── FCVTWUD.java │ │ ├── FCVTWUS.java │ │ ├── FDIVD.java │ │ ├── FDIVS.java │ │ ├── FENCE.java │ │ ├── FENCEI.java │ │ ├── FEQD.java │ │ ├── FEQS.java │ │ ├── FLD.java │ │ ├── FLED.java │ │ ├── FLES.java │ │ ├── FLTD.java │ │ ├── FLTS.java │ │ ├── FLW.java │ │ ├── FMADDD.java │ │ ├── FMADDS.java │ │ ├── FMAXD.java │ │ ├── FMAXS.java │ │ ├── FMIND.java │ │ ├── FMINS.java │ │ ├── FMSUBD.java │ │ ├── FMSUBS.java │ │ ├── FMULD.java │ │ ├── FMULS.java │ │ ├── FMVDX.java │ │ ├── FMVSX.java │ │ ├── FMVXD.java │ │ ├── FMVXS.java │ │ ├── FNMADDD.java │ │ ├── FNMADDS.java │ │ ├── FNMSUBD.java │ │ ├── FNMSUBS.java │ │ ├── FSD.java │ │ ├── FSGNJD.java │ │ ├── FSGNJND.java │ │ ├── FSGNJNS.java │ │ ├── FSGNJS.java │ │ ├── FSGNJXD.java │ │ ├── FSGNJXS.java │ │ ├── FSQRTD.java │ │ ├── FSQRTS.java │ │ ├── FSUBD.java │ │ ├── FSUBS.java │ │ ├── FSW.java │ │ ├── Floating.java │ │ ├── FusedDouble.java │ │ ├── FusedFloat.java │ │ ├── ImmediateInstruction.java │ │ ├── JAL.java │ │ ├── JALR.java │ │ ├── LB.java │ │ ├── LBU.java │ │ ├── LD.java │ │ ├── LH.java │ │ ├── LHU.java │ │ ├── LUI.java │ │ ├── LW.java │ │ ├── LWU.java │ │ ├── Load.java │ │ ├── MUL.java │ │ ├── MULH.java │ │ ├── MULHSU.java │ │ ├── MULHU.java │ │ ├── MULW.java │ │ ├── OR.java │ │ ├── ORI.java │ │ ├── REM.java │ │ ├── REMU.java │ │ ├── REMUW.java │ │ ├── REMW.java │ │ ├── SB.java │ │ ├── SD.java │ │ ├── SH.java │ │ ├── SLL.java │ │ ├── SLLI.java │ │ ├── SLLI64.java │ │ ├── SLLIW.java │ │ ├── SLLW.java │ │ ├── SLT.java │ │ ├── SLTI.java │ │ ├── SLTIU.java │ │ ├── SLTU.java │ │ ├── SRA.java │ │ ├── SRAI.java │ │ ├── SRAI64.java │ │ ├── SRAIW.java │ │ ├── SRAW.java │ │ ├── SRL.java │ │ ├── SRLI.java │ │ ├── SRLI64.java │ │ ├── SRLIW.java │ │ ├── SRLW.java │ │ ├── SUB.java │ │ ├── SUBW.java │ │ ├── SW.java │ │ ├── Store.java │ │ ├── URET.java │ │ ├── WFI.java │ │ ├── XOR.java │ │ └── XORI.java │ └── syscalls │ │ ├── NullString.java │ │ ├── RandomStreams.java │ │ ├── SyscallClose.java │ │ ├── SyscallConfirmDialog.java │ │ ├── SyscallExit.java │ │ ├── SyscallExit2.java │ │ ├── SyscallGetCWD.java │ │ ├── SyscallInputDialogDouble.java │ │ ├── SyscallInputDialogFloat.java │ │ ├── SyscallInputDialogInt.java │ │ ├── SyscallInputDialogString.java │ │ ├── SyscallLSeek.java │ │ ├── SyscallMessageDialog.java │ │ ├── SyscallMessageDialogDouble.java │ │ ├── SyscallMessageDialogFloat.java │ │ ├── SyscallMessageDialogInt.java │ │ ├── SyscallMessageDialogString.java │ │ ├── SyscallMidiOut.java │ │ ├── SyscallMidiOutSync.java │ │ ├── SyscallOpen.java │ │ ├── SyscallPrintChar.java │ │ ├── SyscallPrintDouble.java │ │ ├── SyscallPrintFloat.java │ │ ├── SyscallPrintInt.java │ │ ├── SyscallPrintIntBinary.java │ │ ├── SyscallPrintIntHex.java │ │ ├── SyscallPrintIntUnsigned.java │ │ ├── SyscallPrintString.java │ │ ├── SyscallRandDouble.java │ │ ├── SyscallRandFloat.java │ │ ├── SyscallRandInt.java │ │ ├── SyscallRandIntRange.java │ │ ├── SyscallRandSeed.java │ │ ├── SyscallRead.java │ │ ├── SyscallReadChar.java │ │ ├── SyscallReadDouble.java │ │ ├── SyscallReadFloat.java │ │ ├── SyscallReadInt.java │ │ ├── SyscallReadString.java │ │ ├── SyscallSbrk.java │ │ ├── SyscallSleep.java │ │ ├── SyscallTime.java │ │ ├── SyscallWrite.java │ │ └── ToneGenerator.java │ ├── simulator │ ├── BackStepper.java │ ├── ProgramArgumentList.java │ ├── Simulator.java │ └── SimulatorNotice.java │ ├── tools │ ├── AbstractToolAndApplication.java │ ├── BHTEntry.java │ ├── BHTSimGUI.java │ ├── BHTSimulator.java │ ├── BHTableModel.java │ ├── BitmapDisplay.java │ ├── CacheSimulator.java │ ├── DigitalLabSim.java │ ├── FloatRepresentation.java │ ├── InstructionCounter.java │ ├── InstructionMemoryDump.java │ ├── InstructionStatistics.java │ ├── KeyboardAndDisplaySimulator.java │ ├── MemoryReferenceVisualization.java │ ├── TimerTool.java │ └── Tool.java │ ├── util │ ├── Binary.java │ ├── EditorFont.java │ ├── FilenameFinder.java │ ├── MemoryDump.java │ ├── PropertiesFile.java │ └── SystemIO.java │ └── venus │ ├── DataSegmentWindow.java │ ├── EditFindReplaceAction.java │ ├── EditPane.java │ ├── EditTabbedPane.java │ ├── Editor.java │ ├── ExecutePane.java │ ├── FileDumpMemoryAction.java │ ├── FileStatus.java │ ├── GuiAction.java │ ├── HelpAboutAction.java │ ├── HelpHelpAction.java │ ├── LabelsWindow.java │ ├── MainPane.java │ ├── MessagesPane.java │ ├── MonoRightCellRenderer.java │ ├── NumberDisplayBaseChooser.java │ ├── TextSegmentWindow.java │ ├── ToolAction.java │ ├── ToolLoader.java │ ├── VenusUI.java │ ├── editors │ ├── TextEditingArea.java │ ├── generic │ │ └── GenericTextArea.java │ └── jeditsyntax │ │ ├── DefaultInputHandler.java │ │ ├── InputHandler.java │ │ ├── JEditBasedTextArea.java │ │ ├── JEditTextArea.java │ │ ├── KeywordMap.java │ │ ├── PopupHelpItem.java │ │ ├── SyntaxDocument.java │ │ ├── SyntaxStyle.java │ │ ├── SyntaxUtilities.java │ │ ├── TextAreaDefaults.java │ │ ├── TextAreaPainter.java │ │ ├── TextUtilities.java │ │ └── tokenmarker │ │ ├── RISCVTokenMarker.java │ │ ├── Token.java │ │ └── TokenMarker.java │ ├── registers │ ├── ControlAndStatusWindow.java │ ├── FloatingPointWindow.java │ ├── RegisterBlockWindow.java │ ├── RegistersPane.java │ └── RegistersWindow.java │ ├── run │ ├── RunAssembleAction.java │ ├── RunBackstepAction.java │ ├── RunClearBreakpointsAction.java │ ├── RunGoAction.java │ ├── RunResetAction.java │ ├── RunSpeedPanel.java │ └── RunStepAction.java │ ├── settings │ ├── SettingsAction.java │ ├── SettingsEditorAction.java │ ├── SettingsExceptionHandlerAction.java │ ├── SettingsHighlightingAction.java │ └── SettingsMemoryConfigurationAction.java │ └── util │ ├── AbstractFontSettingDialog.java │ ├── PopupListener.java │ └── RepeatButton.java ├── test.sh └── test ├── Test.java ├── csr.s ├── exception.s ├── jalr.s ├── loop.s ├── memory.s ├── riscv-tests-64 ├── add.S ├── addi.S ├── addiw.S ├── addw.S ├── and.S ├── andi.S ├── lb.S ├── lbu.S ├── ld.S ├── lh.S ├── lhu.S ├── lui.S ├── lw.S ├── lwu.S ├── or.S ├── ori.S ├── sb.S ├── sd.S ├── sh.S ├── simple.S ├── sll.S ├── slli.S ├── slliw.S ├── sllw.S ├── slt.S ├── slti.S ├── sltiu.S ├── sltu.S ├── sra.S ├── srai.S ├── sraiw.S ├── sraw.S ├── srl.S ├── srli.S ├── srliw.S ├── srlw.S ├── sub.S ├── subw.S ├── sw.S ├── xor.S └── xori.S ├── riscv-tests ├── LICENSE ├── add.s ├── addi.s ├── and.s ├── andi.s ├── div.s ├── divu.s ├── fadd.s ├── faddd.s ├── fclass.s ├── fclassd.s ├── fcmp.s ├── fcmpd.s ├── fcvt.s ├── fcvt_w.s ├── fcvt_wd.s ├── fcvtd.s ├── fdiv.s ├── fdivd.s ├── fmadd.s ├── fmaddd.s ├── fmin.s ├── fmind.s ├── ldst.s ├── ldstd.s ├── lui.s ├── move.s ├── mul.s ├── mulh.s ├── mulhsu.s ├── mulhu.s ├── or.s ├── ori.s ├── readme.txt ├── recoding.s ├── recodingd.s ├── rem.s ├── remu.s ├── simple.s ├── sll.s ├── slli.s ├── slt.s ├── slti.s ├── sltiu.s ├── sltu.s ├── sra.s ├── srai.s ├── srl.s ├── srli.s ├── sub.s ├── xor.s └── xori.s ├── selfmod.s ├── success.s ├── unicode.s └── unicode_fail.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/.travis.yml -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/README.md -------------------------------------------------------------------------------- /examples/bottles.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/bottles.s -------------------------------------------------------------------------------- /examples/cat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/cat.s -------------------------------------------------------------------------------- /examples/mastermind.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/mastermind.s -------------------------------------------------------------------------------- /examples/printf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/printf.s -------------------------------------------------------------------------------- /examples/printnum.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/printnum.s -------------------------------------------------------------------------------- /examples/printstr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/printstr.s -------------------------------------------------------------------------------- /examples/pwd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/pwd.s -------------------------------------------------------------------------------- /examples/timertool.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/examples/timertool.s -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/Config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/Config.properties -------------------------------------------------------------------------------- /src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/PseudoOps-64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/PseudoOps-64.txt -------------------------------------------------------------------------------- /src/PseudoOps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/PseudoOps.txt -------------------------------------------------------------------------------- /src/Settings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/Settings.properties -------------------------------------------------------------------------------- /src/Syscall.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/Syscall.properties -------------------------------------------------------------------------------- /src/help/Acknowledgements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/Acknowledgements.html -------------------------------------------------------------------------------- /src/help/BugReportingHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/BugReportingHelp.html -------------------------------------------------------------------------------- /src/help/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/Command.html -------------------------------------------------------------------------------- /src/help/Debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/Debugging.html -------------------------------------------------------------------------------- /src/help/ExceptionsHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/ExceptionsHelp.html -------------------------------------------------------------------------------- /src/help/History.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/History.html -------------------------------------------------------------------------------- /src/help/IDE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/IDE.html -------------------------------------------------------------------------------- /src/help/Intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/Intro.html -------------------------------------------------------------------------------- /src/help/Limits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/Limits.html -------------------------------------------------------------------------------- /src/help/MacrosHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/MacrosHelp.html -------------------------------------------------------------------------------- /src/help/SyscallHelpConclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/SyscallHelpConclusion.html -------------------------------------------------------------------------------- /src/help/SyscallHelpPrelude.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/SyscallHelpPrelude.html -------------------------------------------------------------------------------- /src/help/SyscallMessageDialogError.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/SyscallMessageDialogError.gif -------------------------------------------------------------------------------- /src/help/SyscallMessageDialogInformation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/SyscallMessageDialogInformation.gif -------------------------------------------------------------------------------- /src/help/SyscallMessageDialogQuestion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/SyscallMessageDialogQuestion.gif -------------------------------------------------------------------------------- /src/help/SyscallMessageDialogWarning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/SyscallMessageDialogWarning.gif -------------------------------------------------------------------------------- /src/help/Tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/help/Tools.html -------------------------------------------------------------------------------- /src/images/ALUcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/ALUcontrol.png -------------------------------------------------------------------------------- /src/images/Assemble16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Assemble16.png -------------------------------------------------------------------------------- /src/images/Assemble22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Assemble22.png -------------------------------------------------------------------------------- /src/images/Copy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Copy16.png -------------------------------------------------------------------------------- /src/images/Copy22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Copy22.png -------------------------------------------------------------------------------- /src/images/Cut16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Cut16.gif -------------------------------------------------------------------------------- /src/images/Cut22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Cut22.gif -------------------------------------------------------------------------------- /src/images/Cut24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Cut24.gif -------------------------------------------------------------------------------- /src/images/Dump16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Dump16.png -------------------------------------------------------------------------------- /src/images/Dump22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Dump22.png -------------------------------------------------------------------------------- /src/images/Edit_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Edit_tab.jpg -------------------------------------------------------------------------------- /src/images/Execute_tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Execute_tab.jpg -------------------------------------------------------------------------------- /src/images/Find16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Find16.png -------------------------------------------------------------------------------- /src/images/Find22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Find22.png -------------------------------------------------------------------------------- /src/images/Help16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Help16.png -------------------------------------------------------------------------------- /src/images/Help22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Help22.png -------------------------------------------------------------------------------- /src/images/MyBlank16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/MyBlank16.gif -------------------------------------------------------------------------------- /src/images/MyBlank24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/MyBlank24.gif -------------------------------------------------------------------------------- /src/images/New16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/New16.png -------------------------------------------------------------------------------- /src/images/New22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/New22.png -------------------------------------------------------------------------------- /src/images/Next22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Next22.png -------------------------------------------------------------------------------- /src/images/Open16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Open16.png -------------------------------------------------------------------------------- /src/images/Open22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Open22.png -------------------------------------------------------------------------------- /src/images/Paste16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Paste16.png -------------------------------------------------------------------------------- /src/images/Paste22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Paste22.png -------------------------------------------------------------------------------- /src/images/Pause16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Pause16.png -------------------------------------------------------------------------------- /src/images/Pause22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Pause22.png -------------------------------------------------------------------------------- /src/images/Play16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Play16.png -------------------------------------------------------------------------------- /src/images/Play22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Play22.png -------------------------------------------------------------------------------- /src/images/Previous22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Previous22.png -------------------------------------------------------------------------------- /src/images/RISC-V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/RISC-V.png -------------------------------------------------------------------------------- /src/images/Redo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Redo16.png -------------------------------------------------------------------------------- /src/images/Redo22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Redo22.png -------------------------------------------------------------------------------- /src/images/Reset16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Reset16.png -------------------------------------------------------------------------------- /src/images/Reset22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Reset22.png -------------------------------------------------------------------------------- /src/images/Save16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Save16.png -------------------------------------------------------------------------------- /src/images/Save22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Save22.png -------------------------------------------------------------------------------- /src/images/SaveAs16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/SaveAs16.png -------------------------------------------------------------------------------- /src/images/SaveAs22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/SaveAs22.png -------------------------------------------------------------------------------- /src/images/StepBack16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/StepBack16.png -------------------------------------------------------------------------------- /src/images/StepBack22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/StepBack22.png -------------------------------------------------------------------------------- /src/images/StepForward16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/StepForward16.png -------------------------------------------------------------------------------- /src/images/StepForward22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/StepForward22.png -------------------------------------------------------------------------------- /src/images/Stop16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Stop16.png -------------------------------------------------------------------------------- /src/images/Stop22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Stop22.png -------------------------------------------------------------------------------- /src/images/Undo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Undo16.png -------------------------------------------------------------------------------- /src/images/Undo22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/Undo22.png -------------------------------------------------------------------------------- /src/images/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/control.png -------------------------------------------------------------------------------- /src/images/datapath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/datapath.png -------------------------------------------------------------------------------- /src/images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/images/register.png -------------------------------------------------------------------------------- /src/rars/AssemblyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/AssemblyException.java -------------------------------------------------------------------------------- /src/rars/BreakpointException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/BreakpointException.java -------------------------------------------------------------------------------- /src/rars/ErrorList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/ErrorList.java -------------------------------------------------------------------------------- /src/rars/ErrorMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/ErrorMessage.java -------------------------------------------------------------------------------- /src/rars/ExitingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/ExitingException.java -------------------------------------------------------------------------------- /src/rars/Globals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/Globals.java -------------------------------------------------------------------------------- /src/rars/Launch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/Launch.java -------------------------------------------------------------------------------- /src/rars/ProgramStatement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/ProgramStatement.java -------------------------------------------------------------------------------- /src/rars/RISCVprogram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/RISCVprogram.java -------------------------------------------------------------------------------- /src/rars/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/Settings.java -------------------------------------------------------------------------------- /src/rars/SimulationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/SimulationException.java -------------------------------------------------------------------------------- /src/rars/WaitException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/WaitException.java -------------------------------------------------------------------------------- /src/rars/api/Options.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/api/Options.java -------------------------------------------------------------------------------- /src/rars/api/Program.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/api/Program.java -------------------------------------------------------------------------------- /src/rars/assembler/Assembler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/Assembler.java -------------------------------------------------------------------------------- /src/rars/assembler/DataTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/DataTypes.java -------------------------------------------------------------------------------- /src/rars/assembler/Directives.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/Directives.java -------------------------------------------------------------------------------- /src/rars/assembler/Macro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/Macro.java -------------------------------------------------------------------------------- /src/rars/assembler/MacroPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/MacroPool.java -------------------------------------------------------------------------------- /src/rars/assembler/OperandFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/OperandFormat.java -------------------------------------------------------------------------------- /src/rars/assembler/SourceLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/SourceLine.java -------------------------------------------------------------------------------- /src/rars/assembler/Symbol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/Symbol.java -------------------------------------------------------------------------------- /src/rars/assembler/SymbolTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/SymbolTable.java -------------------------------------------------------------------------------- /src/rars/assembler/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/Token.java -------------------------------------------------------------------------------- /src/rars/assembler/TokenList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/TokenList.java -------------------------------------------------------------------------------- /src/rars/assembler/TokenTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/TokenTypes.java -------------------------------------------------------------------------------- /src/rars/assembler/Tokenizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/assembler/Tokenizer.java -------------------------------------------------------------------------------- /src/rars/extras/Documentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/extras/Documentation.java -------------------------------------------------------------------------------- /src/rars/riscv/AbstractSyscall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/AbstractSyscall.java -------------------------------------------------------------------------------- /src/rars/riscv/BasicInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/BasicInstruction.java -------------------------------------------------------------------------------- /src/rars/riscv/BasicInstructionFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/BasicInstructionFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/ExtendedInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/ExtendedInstruction.java -------------------------------------------------------------------------------- /src/rars/riscv/Instruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/Instruction.java -------------------------------------------------------------------------------- /src/rars/riscv/InstructionSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/InstructionSet.java -------------------------------------------------------------------------------- /src/rars/riscv/SyscallLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/SyscallLoader.java -------------------------------------------------------------------------------- /src/rars/riscv/SyscallNumberOverride.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/SyscallNumberOverride.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/AbstractDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/AbstractDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/AsciiTextDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/AsciiTextDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/BinaryDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/BinaryDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/BinaryTextDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/BinaryTextDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/DumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/DumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/DumpFormatLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/DumpFormatLoader.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/HexTextDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/HexTextDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/IntelHexDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/IntelHexDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/dump/SegmentWindowDumpFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/dump/SegmentWindowDumpFormat.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/AccessNotice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/AccessNotice.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/AddressErrorException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/AddressErrorException.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/ControlAndStatusRegisterFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/ControlAndStatusRegisterFile.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/FloatingPointRegisterFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/FloatingPointRegisterFile.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/InterruptController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/InterruptController.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/LinkedRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/LinkedRegister.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/MaskedRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/MaskedRegister.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/Memory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/Memory.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/MemoryAccessNotice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/MemoryAccessNotice.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/MemoryConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/MemoryConfiguration.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/MemoryConfigurations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/MemoryConfigurations.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/ReadOnlyRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/ReadOnlyRegister.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/Register.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/Register.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/RegisterAccessNotice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/RegisterAccessNotice.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/RegisterBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/RegisterBlock.java -------------------------------------------------------------------------------- /src/rars/riscv/hardware/RegisterFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/hardware/RegisterFile.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ADD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ADD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ADDI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ADDI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ADDIW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ADDIW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ADDW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ADDW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/AND.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/AND.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ANDI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ANDI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/AUIPC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/AUIPC.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/Arithmetic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/Arithmetic.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ArithmeticW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ArithmeticW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/BEQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/BEQ.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/BGE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/BGE.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/BGEU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/BGEU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/BLT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/BLT.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/BLTU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/BLTU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/BNE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/BNE.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/Branch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/Branch.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/CSRRC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/CSRRC.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/CSRRCI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/CSRRCI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/CSRRS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/CSRRS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/CSRRSI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/CSRRSI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/CSRRW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/CSRRW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/CSRRWI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/CSRRWI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/DIV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/DIV.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/DIVU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/DIVU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/DIVUW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/DIVUW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/DIVW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/DIVW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/Double.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/Double.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/EBREAK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/EBREAK.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ECALL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ECALL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FADDD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FADDD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FADDS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FADDS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCLASSD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCLASSD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCLASSS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCLASSS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTDL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTDL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTDLU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTDLU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTDS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTDS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTDW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTDW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTDWU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTDWU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTLD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTLD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTLS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTLS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTLUD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTLUD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTLUS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTLUS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTSD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTSD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTSL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTSLU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTSLU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTSW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTSW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTSWU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTSWU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTWD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTWD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTWS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTWS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTWUD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTWUD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FCVTWUS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FCVTWUS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FDIVD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FDIVD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FDIVS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FDIVS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FENCE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FENCE.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FENCEI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FENCEI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FEQD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FEQD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FEQS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FEQS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FLD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FLD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FLED.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FLED.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FLES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FLES.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FLTD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FLTD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FLTS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FLTS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FLW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FLW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMADDD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMADDD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMADDS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMADDS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMAXD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMAXD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMAXS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMAXS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMIND.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMIND.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMINS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMINS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMSUBD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMSUBD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMSUBS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMSUBS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMULD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMULD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMULS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMULS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMVDX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMVDX.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMVSX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMVSX.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMVXD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMVXD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FMVXS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FMVXS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FNMADDD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FNMADDD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FNMADDS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FNMADDS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FNMSUBD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FNMSUBD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FNMSUBS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FNMSUBS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSGNJD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSGNJD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSGNJND.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSGNJND.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSGNJNS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSGNJNS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSGNJS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSGNJS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSGNJXD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSGNJXD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSGNJXS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSGNJXS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSQRTD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSQRTD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSQRTS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSQRTS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSUBD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSUBD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSUBS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSUBS.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FSW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FSW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/Floating.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/Floating.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FusedDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FusedDouble.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/FusedFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/FusedFloat.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ImmediateInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ImmediateInstruction.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/JAL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/JAL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/JALR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/JALR.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LB.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LBU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LBU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LH.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LHU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LHU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LUI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/LWU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/LWU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/Load.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/Load.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/MUL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/MUL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/MULH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/MULH.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/MULHSU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/MULHSU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/MULHU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/MULHU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/MULW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/MULW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/OR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/OR.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/ORI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/ORI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/REM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/REM.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/REMU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/REMU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/REMUW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/REMUW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/REMW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/REMW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SB.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SD.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SH.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLLI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLLI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLLI64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLLI64.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLLIW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLLIW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLLW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLLW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLT.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLTI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLTI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLTIU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLTIU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SLTU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SLTU.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRA.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRAI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRAI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRAI64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRAI64.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRAIW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRAIW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRAW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRAW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRL.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRLI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRLI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRLI64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRLI64.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRLIW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRLIW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SRLW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SRLW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SUB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SUB.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SUBW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SUBW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/SW.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/SW.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/Store.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/Store.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/URET.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/URET.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/WFI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/WFI.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/XOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/XOR.java -------------------------------------------------------------------------------- /src/rars/riscv/instructions/XORI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/instructions/XORI.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/NullString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/NullString.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/RandomStreams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/RandomStreams.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallClose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallClose.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallConfirmDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallConfirmDialog.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallExit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallExit.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallExit2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallExit2.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallGetCWD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallGetCWD.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallInputDialogDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallInputDialogDouble.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallInputDialogFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallInputDialogFloat.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallInputDialogInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallInputDialogInt.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallInputDialogString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallInputDialogString.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallLSeek.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallLSeek.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMessageDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMessageDialog.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMessageDialogDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMessageDialogDouble.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMessageDialogFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMessageDialogFloat.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMessageDialogInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMessageDialogInt.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMessageDialogString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMessageDialogString.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMidiOut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMidiOut.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallMidiOutSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallMidiOutSync.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallOpen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallOpen.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintChar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintChar.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintDouble.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintFloat.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintInt.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintIntBinary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintIntBinary.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintIntHex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintIntHex.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintIntUnsigned.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintIntUnsigned.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallPrintString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallPrintString.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallRandDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallRandDouble.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallRandFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallRandFloat.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallRandInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallRandInt.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallRandIntRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallRandIntRange.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallRandSeed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallRandSeed.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallRead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallRead.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallReadChar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallReadChar.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallReadDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallReadDouble.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallReadFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallReadFloat.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallReadInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallReadInt.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallReadString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallReadString.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallSbrk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallSbrk.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallSleep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallSleep.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallTime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallTime.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/SyscallWrite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/SyscallWrite.java -------------------------------------------------------------------------------- /src/rars/riscv/syscalls/ToneGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/riscv/syscalls/ToneGenerator.java -------------------------------------------------------------------------------- /src/rars/simulator/BackStepper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/simulator/BackStepper.java -------------------------------------------------------------------------------- /src/rars/simulator/ProgramArgumentList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/simulator/ProgramArgumentList.java -------------------------------------------------------------------------------- /src/rars/simulator/Simulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/simulator/Simulator.java -------------------------------------------------------------------------------- /src/rars/simulator/SimulatorNotice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/simulator/SimulatorNotice.java -------------------------------------------------------------------------------- /src/rars/tools/AbstractToolAndApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/AbstractToolAndApplication.java -------------------------------------------------------------------------------- /src/rars/tools/BHTEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/BHTEntry.java -------------------------------------------------------------------------------- /src/rars/tools/BHTSimGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/BHTSimGUI.java -------------------------------------------------------------------------------- /src/rars/tools/BHTSimulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/BHTSimulator.java -------------------------------------------------------------------------------- /src/rars/tools/BHTableModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/BHTableModel.java -------------------------------------------------------------------------------- /src/rars/tools/BitmapDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/BitmapDisplay.java -------------------------------------------------------------------------------- /src/rars/tools/CacheSimulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/CacheSimulator.java -------------------------------------------------------------------------------- /src/rars/tools/DigitalLabSim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/DigitalLabSim.java -------------------------------------------------------------------------------- /src/rars/tools/FloatRepresentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/FloatRepresentation.java -------------------------------------------------------------------------------- /src/rars/tools/InstructionCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/InstructionCounter.java -------------------------------------------------------------------------------- /src/rars/tools/InstructionMemoryDump.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/InstructionMemoryDump.java -------------------------------------------------------------------------------- /src/rars/tools/InstructionStatistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/InstructionStatistics.java -------------------------------------------------------------------------------- /src/rars/tools/KeyboardAndDisplaySimulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/KeyboardAndDisplaySimulator.java -------------------------------------------------------------------------------- /src/rars/tools/MemoryReferenceVisualization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/MemoryReferenceVisualization.java -------------------------------------------------------------------------------- /src/rars/tools/TimerTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/TimerTool.java -------------------------------------------------------------------------------- /src/rars/tools/Tool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/tools/Tool.java -------------------------------------------------------------------------------- /src/rars/util/Binary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/util/Binary.java -------------------------------------------------------------------------------- /src/rars/util/EditorFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/util/EditorFont.java -------------------------------------------------------------------------------- /src/rars/util/FilenameFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/util/FilenameFinder.java -------------------------------------------------------------------------------- /src/rars/util/MemoryDump.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/util/MemoryDump.java -------------------------------------------------------------------------------- /src/rars/util/PropertiesFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/util/PropertiesFile.java -------------------------------------------------------------------------------- /src/rars/util/SystemIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/util/SystemIO.java -------------------------------------------------------------------------------- /src/rars/venus/DataSegmentWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/DataSegmentWindow.java -------------------------------------------------------------------------------- /src/rars/venus/EditFindReplaceAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/EditFindReplaceAction.java -------------------------------------------------------------------------------- /src/rars/venus/EditPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/EditPane.java -------------------------------------------------------------------------------- /src/rars/venus/EditTabbedPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/EditTabbedPane.java -------------------------------------------------------------------------------- /src/rars/venus/Editor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/Editor.java -------------------------------------------------------------------------------- /src/rars/venus/ExecutePane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/ExecutePane.java -------------------------------------------------------------------------------- /src/rars/venus/FileDumpMemoryAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/FileDumpMemoryAction.java -------------------------------------------------------------------------------- /src/rars/venus/FileStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/FileStatus.java -------------------------------------------------------------------------------- /src/rars/venus/GuiAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/GuiAction.java -------------------------------------------------------------------------------- /src/rars/venus/HelpAboutAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/HelpAboutAction.java -------------------------------------------------------------------------------- /src/rars/venus/HelpHelpAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/HelpHelpAction.java -------------------------------------------------------------------------------- /src/rars/venus/LabelsWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/LabelsWindow.java -------------------------------------------------------------------------------- /src/rars/venus/MainPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/MainPane.java -------------------------------------------------------------------------------- /src/rars/venus/MessagesPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/MessagesPane.java -------------------------------------------------------------------------------- /src/rars/venus/MonoRightCellRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/MonoRightCellRenderer.java -------------------------------------------------------------------------------- /src/rars/venus/NumberDisplayBaseChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/NumberDisplayBaseChooser.java -------------------------------------------------------------------------------- /src/rars/venus/TextSegmentWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/TextSegmentWindow.java -------------------------------------------------------------------------------- /src/rars/venus/ToolAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/ToolAction.java -------------------------------------------------------------------------------- /src/rars/venus/ToolLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/ToolLoader.java -------------------------------------------------------------------------------- /src/rars/venus/VenusUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/VenusUI.java -------------------------------------------------------------------------------- /src/rars/venus/editors/TextEditingArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/TextEditingArea.java -------------------------------------------------------------------------------- /src/rars/venus/editors/generic/GenericTextArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/generic/GenericTextArea.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/DefaultInputHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/DefaultInputHandler.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/InputHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/InputHandler.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/JEditBasedTextArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/JEditBasedTextArea.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/JEditTextArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/JEditTextArea.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/KeywordMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/KeywordMap.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/PopupHelpItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/PopupHelpItem.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/SyntaxDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/SyntaxDocument.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/SyntaxStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/SyntaxStyle.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/SyntaxUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/SyntaxUtilities.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/TextAreaDefaults.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/TextAreaDefaults.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/TextAreaPainter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/TextAreaPainter.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/TextUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/TextUtilities.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/tokenmarker/RISCVTokenMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/tokenmarker/RISCVTokenMarker.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/tokenmarker/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/tokenmarker/Token.java -------------------------------------------------------------------------------- /src/rars/venus/editors/jeditsyntax/tokenmarker/TokenMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/editors/jeditsyntax/tokenmarker/TokenMarker.java -------------------------------------------------------------------------------- /src/rars/venus/registers/ControlAndStatusWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/registers/ControlAndStatusWindow.java -------------------------------------------------------------------------------- /src/rars/venus/registers/FloatingPointWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/registers/FloatingPointWindow.java -------------------------------------------------------------------------------- /src/rars/venus/registers/RegisterBlockWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/registers/RegisterBlockWindow.java -------------------------------------------------------------------------------- /src/rars/venus/registers/RegistersPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/registers/RegistersPane.java -------------------------------------------------------------------------------- /src/rars/venus/registers/RegistersWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/registers/RegistersWindow.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunAssembleAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunAssembleAction.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunBackstepAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunBackstepAction.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunClearBreakpointsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunClearBreakpointsAction.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunGoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunGoAction.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunResetAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunResetAction.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunSpeedPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunSpeedPanel.java -------------------------------------------------------------------------------- /src/rars/venus/run/RunStepAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/run/RunStepAction.java -------------------------------------------------------------------------------- /src/rars/venus/settings/SettingsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/settings/SettingsAction.java -------------------------------------------------------------------------------- /src/rars/venus/settings/SettingsEditorAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/settings/SettingsEditorAction.java -------------------------------------------------------------------------------- /src/rars/venus/settings/SettingsExceptionHandlerAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/settings/SettingsExceptionHandlerAction.java -------------------------------------------------------------------------------- /src/rars/venus/settings/SettingsHighlightingAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/settings/SettingsHighlightingAction.java -------------------------------------------------------------------------------- /src/rars/venus/settings/SettingsMemoryConfigurationAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/settings/SettingsMemoryConfigurationAction.java -------------------------------------------------------------------------------- /src/rars/venus/util/AbstractFontSettingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/util/AbstractFontSettingDialog.java -------------------------------------------------------------------------------- /src/rars/venus/util/PopupListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/util/PopupListener.java -------------------------------------------------------------------------------- /src/rars/venus/util/RepeatButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/src/rars/venus/util/RepeatButton.java -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test.sh -------------------------------------------------------------------------------- /test/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/Test.java -------------------------------------------------------------------------------- /test/csr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/csr.s -------------------------------------------------------------------------------- /test/exception.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/exception.s -------------------------------------------------------------------------------- /test/jalr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/jalr.s -------------------------------------------------------------------------------- /test/loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/loop.s -------------------------------------------------------------------------------- /test/memory.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/memory.s -------------------------------------------------------------------------------- /test/riscv-tests-64/add.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/add.S -------------------------------------------------------------------------------- /test/riscv-tests-64/addi.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/addi.S -------------------------------------------------------------------------------- /test/riscv-tests-64/addiw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/addiw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/addw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/addw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/and.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/and.S -------------------------------------------------------------------------------- /test/riscv-tests-64/andi.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/andi.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lb.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lbu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lbu.S -------------------------------------------------------------------------------- /test/riscv-tests-64/ld.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/ld.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lh.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lhu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lhu.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lui.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lui.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/lwu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/lwu.S -------------------------------------------------------------------------------- /test/riscv-tests-64/or.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/or.S -------------------------------------------------------------------------------- /test/riscv-tests-64/ori.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/ori.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sb.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sd.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sh.S -------------------------------------------------------------------------------- /test/riscv-tests-64/simple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/simple.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sll.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sll.S -------------------------------------------------------------------------------- /test/riscv-tests-64/slli.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/slli.S -------------------------------------------------------------------------------- /test/riscv-tests-64/slliw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/slliw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sllw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sllw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/slt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/slt.S -------------------------------------------------------------------------------- /test/riscv-tests-64/slti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/slti.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sltiu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sltiu.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sltu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sltu.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sra.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sra.S -------------------------------------------------------------------------------- /test/riscv-tests-64/srai.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/srai.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sraiw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sraiw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sraw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sraw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/srl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/srl.S -------------------------------------------------------------------------------- /test/riscv-tests-64/srli.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/srli.S -------------------------------------------------------------------------------- /test/riscv-tests-64/srliw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/srliw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/srlw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/srlw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sub.S -------------------------------------------------------------------------------- /test/riscv-tests-64/subw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/subw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/sw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/sw.S -------------------------------------------------------------------------------- /test/riscv-tests-64/xor.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/xor.S -------------------------------------------------------------------------------- /test/riscv-tests-64/xori.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests-64/xori.S -------------------------------------------------------------------------------- /test/riscv-tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/LICENSE -------------------------------------------------------------------------------- /test/riscv-tests/add.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/add.s -------------------------------------------------------------------------------- /test/riscv-tests/addi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/addi.s -------------------------------------------------------------------------------- /test/riscv-tests/and.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/and.s -------------------------------------------------------------------------------- /test/riscv-tests/andi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/andi.s -------------------------------------------------------------------------------- /test/riscv-tests/div.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/div.s -------------------------------------------------------------------------------- /test/riscv-tests/divu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/divu.s -------------------------------------------------------------------------------- /test/riscv-tests/fadd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fadd.s -------------------------------------------------------------------------------- /test/riscv-tests/faddd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/faddd.s -------------------------------------------------------------------------------- /test/riscv-tests/fclass.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fclass.s -------------------------------------------------------------------------------- /test/riscv-tests/fclassd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fclassd.s -------------------------------------------------------------------------------- /test/riscv-tests/fcmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fcmp.s -------------------------------------------------------------------------------- /test/riscv-tests/fcmpd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fcmpd.s -------------------------------------------------------------------------------- /test/riscv-tests/fcvt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fcvt.s -------------------------------------------------------------------------------- /test/riscv-tests/fcvt_w.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fcvt_w.s -------------------------------------------------------------------------------- /test/riscv-tests/fcvt_wd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fcvt_wd.s -------------------------------------------------------------------------------- /test/riscv-tests/fcvtd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fcvtd.s -------------------------------------------------------------------------------- /test/riscv-tests/fdiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fdiv.s -------------------------------------------------------------------------------- /test/riscv-tests/fdivd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fdivd.s -------------------------------------------------------------------------------- /test/riscv-tests/fmadd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fmadd.s -------------------------------------------------------------------------------- /test/riscv-tests/fmaddd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fmaddd.s -------------------------------------------------------------------------------- /test/riscv-tests/fmin.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fmin.s -------------------------------------------------------------------------------- /test/riscv-tests/fmind.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/fmind.s -------------------------------------------------------------------------------- /test/riscv-tests/ldst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/ldst.s -------------------------------------------------------------------------------- /test/riscv-tests/ldstd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/ldstd.s -------------------------------------------------------------------------------- /test/riscv-tests/lui.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/lui.s -------------------------------------------------------------------------------- /test/riscv-tests/move.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/move.s -------------------------------------------------------------------------------- /test/riscv-tests/mul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/mul.s -------------------------------------------------------------------------------- /test/riscv-tests/mulh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/mulh.s -------------------------------------------------------------------------------- /test/riscv-tests/mulhsu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/mulhsu.s -------------------------------------------------------------------------------- /test/riscv-tests/mulhu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/mulhu.s -------------------------------------------------------------------------------- /test/riscv-tests/or.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/or.s -------------------------------------------------------------------------------- /test/riscv-tests/ori.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/ori.s -------------------------------------------------------------------------------- /test/riscv-tests/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/readme.txt -------------------------------------------------------------------------------- /test/riscv-tests/recoding.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/recoding.s -------------------------------------------------------------------------------- /test/riscv-tests/recodingd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/recodingd.s -------------------------------------------------------------------------------- /test/riscv-tests/rem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/rem.s -------------------------------------------------------------------------------- /test/riscv-tests/remu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/remu.s -------------------------------------------------------------------------------- /test/riscv-tests/simple.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/simple.s -------------------------------------------------------------------------------- /test/riscv-tests/sll.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/sll.s -------------------------------------------------------------------------------- /test/riscv-tests/slli.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/slli.s -------------------------------------------------------------------------------- /test/riscv-tests/slt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/slt.s -------------------------------------------------------------------------------- /test/riscv-tests/slti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/slti.s -------------------------------------------------------------------------------- /test/riscv-tests/sltiu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/sltiu.s -------------------------------------------------------------------------------- /test/riscv-tests/sltu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/sltu.s -------------------------------------------------------------------------------- /test/riscv-tests/sra.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/sra.s -------------------------------------------------------------------------------- /test/riscv-tests/srai.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/srai.s -------------------------------------------------------------------------------- /test/riscv-tests/srl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/srl.s -------------------------------------------------------------------------------- /test/riscv-tests/srli.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/srli.s -------------------------------------------------------------------------------- /test/riscv-tests/sub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/sub.s -------------------------------------------------------------------------------- /test/riscv-tests/xor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/xor.s -------------------------------------------------------------------------------- /test/riscv-tests/xori.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/riscv-tests/xori.s -------------------------------------------------------------------------------- /test/selfmod.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/selfmod.s -------------------------------------------------------------------------------- /test/success.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/success.s -------------------------------------------------------------------------------- /test/unicode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/unicode.s -------------------------------------------------------------------------------- /test/unicode_fail.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheThirdOne/rars/HEAD/test/unicode_fail.s --------------------------------------------------------------------------------