├── .filetree ├── .project ├── .properties ├── .squot ├── BaselineOfSafeBet.package ├── .filetree ├── BaselineOfSafeBet.class │ ├── README.md │ ├── instance │ │ ├── baseline..st │ │ └── projectClass.st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── LICENSE ├── README.md ├── RISCV-Examples.package ├── .filetree ├── .squot-contents ├── RVProgramExamples.class │ ├── README.md │ ├── class │ │ ├── addFiveToSixAltProgram.st │ │ ├── addFiveToSixProgram.st │ │ ├── bitmapDrawProgram.st │ │ ├── bitmapDrawProgramLooping.st │ │ ├── bitmapDrawProgramRotation.st │ │ └── exampleAddFiveToSix.st │ ├── methodProperties.json │ └── properties.json ├── monticello.meta │ ├── categories.st │ └── initializers.st └── properties.json ├── RISCV-Extensions-Pharo.package ├── .filetree ├── OrderedDictionary.extension │ ├── instance │ │ └── atIndex..st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── RISCV-GToolkit.package ├── .filetree ├── RVInstruction.extension │ ├── instance │ │ ├── asBlElement.st │ │ └── asGtView..st │ ├── methodProperties.json │ └── properties.json ├── RVInstructionElement.class │ ├── README.md │ ├── instance │ │ └── initialize.st │ ├── methodProperties.json │ └── properties.json ├── RVInstructionPart.extension │ ├── instance │ │ ├── asBlElement.st │ │ └── asGtView..st │ ├── methodProperties.json │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ ├── package │ └── version └── properties.json ├── RISCV-Instructions-64I-Tests.package ├── .filetree ├── RV32IILWTest.extension │ ├── instance │ │ └── testExecute64On.st │ └── properties.json ├── RV64IILDTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ └── properties.json ├── RV64IILWUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ └── properties.json ├── RV64ISSDTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── RISCV-Instructions-64I.package ├── .filetree ├── RV64IILD.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ └── properties.json ├── RV64IILWU.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ └── properties.json ├── RV64ISSD.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ └── properties.json ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ └── package └── properties.json ├── RISCV-Instructions-Core.package ├── .filetree ├── .squot-contents ├── RV32I.class │ ├── README.md │ ├── instance │ │ ├── initializeParts.st │ │ ├── lenx.st │ │ └── xlen.st │ ├── methodProperties.json │ └── properties.json ├── RV32IADD.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IAND.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IB.class │ ├── README.md │ ├── class │ │ ├── fromIntegerWithoutOpcode..st │ │ └── funct3.st │ ├── instance │ │ ├── funct3.st │ │ ├── hasTwoByteMultImmediate.st │ │ ├── imm1.st │ │ ├── imm2.st │ │ ├── imm3.st │ │ ├── imm4.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── isSignedImmediate.st │ │ ├── opcode.st │ │ ├── rs1.st │ │ ├── rs2.st │ │ ├── signedImmediateValue.st │ │ └── unsignedImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBEQ.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBGE.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBGEU.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── messageName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBLT.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBLTU.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBNE.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IEBREAK.class │ ├── README.md │ ├── class │ │ └── funct12Value.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IECALL.class │ ├── README.md │ ├── class │ │ └── funct12Value.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IFENCE.class │ ├── README.md │ ├── class │ │ └── fromIntegerWithoutOpcode..st │ ├── instance │ │ ├── fm.st │ │ ├── funct3.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── instructionName.st │ │ ├── predecessor.st │ │ ├── rd.st │ │ ├── rs1.st │ │ └── successor.st │ ├── methodProperties.json │ └── properties.json ├── RV32II.class │ ├── README.md │ ├── class │ │ ├── fromIntegerWithoutOpcode..st │ │ ├── funct3.st │ │ ├── isSpecialJump.st │ │ ├── isSpecialized.st │ │ └── toggleBit.st │ ├── instance │ │ ├── funct3.st │ │ ├── imm1.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── instructionType.st │ │ ├── isSignedImmediate.st │ │ ├── rd.st │ │ ├── rs1.st │ │ ├── signedImmediateValue.st │ │ └── unsignedImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIADDI.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIANDI.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIJALR.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── isSpecialJump.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIL.class │ ├── README.md │ ├── class │ │ ├── fromIntegerWithoutOpcode..st │ │ └── funct3.st │ ├── instance │ │ └── initialize.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILB.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILBU.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILH.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILHU.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILW.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIORI.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISLLI.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── isSpecialized.st │ ├── instance │ │ ├── executeOn..st │ │ ├── imm2.st │ │ ├── immediateValue..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ └── shamt.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISLTI.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISLTIU.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ └── isSignedImmediate.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISRAI.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ ├── isSpecialized.st │ │ └── toggleBit.st │ ├── instance │ │ ├── executeOn..st │ │ ├── imm2.st │ │ ├── immediateValue..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ └── shamt.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISRLI.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── isSpecialized.st │ ├── instance │ │ ├── executeOn..st │ │ ├── imm2.st │ │ ├── immediateValue..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ └── shamt.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIXORI.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IJ.class │ ├── README.md │ ├── instance │ │ ├── hasTwoByteMultImmediate.st │ │ ├── imm1.st │ │ ├── imm2.st │ │ ├── imm3.st │ │ ├── imm4.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ └── rd.st │ ├── methodProperties.json │ └── properties.json ├── RV32IJJAL.class │ ├── README.md │ ├── class │ │ └── fromIntegerWithoutOpcode..st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ ├── signedImmediateValue.st │ │ └── unsignedImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32INOP.class │ ├── README.md │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IOR.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32IR.class │ ├── README.md │ ├── class │ │ └── fromIntegerWithoutOpcode..st │ ├── instance │ │ ├── funct3.st │ │ ├── funct7.st │ │ ├── hasImmediate.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── instructionName.st │ │ ├── instructionType.st │ │ ├── opcode.st │ │ ├── rd.st │ │ ├── rs1.st │ │ └── rs2.st │ ├── methodProperties.json │ └── properties.json ├── RV32IRegister.class │ ├── README.md │ ├── class │ │ └── xlen.st │ ├── instance │ │ ├── initialize.st │ │ └── printOn..st │ ├── methodProperties.json │ └── properties.json ├── RV32IS.class │ ├── README.md │ ├── class │ │ ├── fromIntegerWithoutOpcode..st │ │ └── funct3.st │ ├── instance │ │ ├── funct3.st │ │ ├── imm1.st │ │ ├── imm2.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── instructionType.st │ │ ├── isSignedImmediate.st │ │ ├── rs1.st │ │ └── rs2.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISLL.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISLT.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISLTU.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISRA.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISRL.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISSB.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISSH.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── intructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISSW.class │ ├── README.md │ ├── class │ │ └── funct3.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISUB.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISYSTEM.class │ ├── README.md │ ├── class │ │ ├── fromIntegerWithoutOpcode..st │ │ └── funct12Value.st │ ├── instance │ │ ├── funct12.st │ │ ├── funct3.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── rd.st │ │ └── rs1.st │ ├── methodProperties.json │ └── properties.json ├── RV32IU.class │ ├── README.md │ ├── instance │ │ ├── imm1.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ └── rd.st │ ├── methodProperties.json │ └── properties.json ├── RV32IUAUIPC.class │ ├── README.md │ ├── class │ │ └── fromIntegerWithoutOpcode..st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ ├── signedImmediateValue.st │ │ └── unsignedImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IULUI.class │ ├── README.md │ ├── class │ │ └── fromIntegerWithoutOpcode..st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ ├── instructionName.st │ │ ├── signedImmediateValue.st │ │ └── unsignedImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IXOR.class │ ├── README.md │ ├── class │ │ ├── funct3.st │ │ └── funct7.st │ ├── instance │ │ ├── executeOn..st │ │ ├── initialize.st │ │ └── instructionName.st │ ├── methodProperties.json │ └── properties.json ├── RV64IRegister.class │ ├── README.md │ ├── class │ │ └── xlen.st │ ├── methodProperties.json │ └── properties.json ├── RVBitfield.class │ ├── README.md │ ├── instance │ │ ├── asByteArray.st │ │ ├── asByteArrayBigEndian.st │ │ ├── asByteArrayLittleEndian.st │ │ ├── asInteger.st │ │ ├── asSignedInteger.st │ │ ├── asUnsignedInteger.st │ │ ├── bitAt..st │ │ ├── bitAt.put..st │ │ ├── byteSize.st │ │ ├── concatWith..st │ │ ├── fromInteger.ofBitSize..st │ │ ├── initialize.st │ │ ├── onesComplement.st │ │ ├── printAsBinary.st │ │ ├── readStream.st │ │ ├── signExtendTo..st │ │ ├── size..st │ │ ├── size.st │ │ ├── twosComplement.st │ │ └── writeStream.st │ ├── methodProperties.json │ └── properties.json ├── RVCPUBasic.class │ ├── README.md │ ├── class │ │ ├── example1024.st │ │ ├── example2048.st │ │ ├── exampleForBitmapDemo.st │ │ └── xlen.st │ ├── instance │ │ ├── addSubscriber..st │ │ ├── bootstrap..st │ │ ├── doNextInstruction.st │ │ ├── incrementPCBy..st │ │ ├── initialize.st │ │ ├── initializeRegisters.st │ │ ├── memory..st │ │ ├── memory.st │ │ ├── nextInstruction.st │ │ ├── notifySubscribers.st │ │ ├── pcValue.st │ │ ├── registerNamed..st │ │ ├── registerNumbered..st │ │ ├── registers.st │ │ ├── run.st │ │ ├── runSync.st │ │ ├── runSyncWithDelay..st │ │ ├── runWithDelay..st │ │ ├── running..st │ │ ├── running.st │ │ ├── tickSpeed.st │ │ └── xlen.st │ ├── methodProperties.json │ └── properties.json ├── RVCPUBasic64.class │ ├── README.md │ ├── class │ │ └── xlen.st │ ├── instance │ │ ├── initialize.st │ │ └── initializeRegisters.st │ ├── methodProperties.json │ └── properties.json ├── RVImmediatePart.class │ ├── README.md │ ├── instance │ │ ├── applyToImmediate..st │ │ ├── applyToImmediate.startingAt..st │ │ ├── immediateEndIndex.st │ │ ├── immediateStartIndex..st │ │ ├── immediateStartIndex.st │ │ ├── initialize.st │ │ └── isImmediatePart.st │ ├── methodProperties.json │ └── properties.json ├── RVInstruction.class │ ├── README.md │ ├── class │ │ ├── fromInteger..st │ │ └── initialize.st │ ├── instance │ │ ├── addPart..st │ │ ├── asByteArray.st │ │ ├── asInteger.st │ │ ├── executeOn..st │ │ ├── hasImmediate.st │ │ ├── hasTwoByteMultImmediate.st │ │ ├── immediateBitLength.st │ │ ├── immediateSignBit.st │ │ ├── immediateValue..st │ │ ├── immediateValue.st │ │ ├── immediates.st │ │ ├── initialize.st │ │ ├── initializeParts.st │ │ ├── isSignedImmediate.st │ │ ├── lenx.st │ │ ├── setFromInteger..st │ │ ├── signedImmediateValue.st │ │ ├── sortedImmediates.st │ │ └── unsignedImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RVInstructionPart.class │ ├── README.md │ ├── instance │ │ ├── applyTo..st │ │ ├── applyTo.startingAt..st │ │ ├── endIndex.st │ │ ├── initialize.st │ │ ├── isImmediatePart.st │ │ ├── isWriteable..st │ │ ├── isWriteable.st │ │ ├── partName..st │ │ ├── partName.st │ │ ├── setFrom.startingAt..st │ │ ├── setTo..st │ │ ├── startIndex.st │ │ └── startingAt..st │ ├── methodProperties.json │ └── properties.json ├── RVMemory.class │ ├── README.md │ ├── class │ │ └── size..st │ ├── instance │ │ ├── byteAt..st │ │ ├── byteAt.put..st │ │ ├── bytesAt.numBytes..st │ │ ├── bytesAt.put..st │ │ ├── initialize.st │ │ ├── size..st │ │ └── size.st │ ├── methodProperties.json │ └── properties.json ├── RVRegister.class │ ├── README.md │ ├── class │ │ └── xlen.st │ ├── instance │ │ ├── asSignedInteger.st │ │ ├── asUnsignedInteger.st │ │ ├── initialize.st │ │ ├── negateBit..st │ │ ├── onesComplementOf..st │ │ ├── registerName..st │ │ ├── registerName.st │ │ ├── twosComplementOf..st │ │ ├── value..st │ │ ├── value.st │ │ └── width.st │ ├── methodProperties.json │ └── properties.json ├── monticello.meta │ ├── categories.st │ └── initializers.st └── properties.json ├── RISCV-Instructions-Tests.package ├── .filetree ├── .squot-contents ├── RV32IADDTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IANDTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBEQTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNotEqual1.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBGETest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnEQ.st │ │ ├── testExecuteOnLT.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBGEUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnGT.st │ │ ├── testExecuteOnLT.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBLTTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnEQ.st │ │ ├── testExecuteOnGT.st │ │ ├── testExecuteOnNegative.st │ │ ├── testExecuteOnNegativeEQ.st │ │ ├── testExecuteOnNegativeGT.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IBBNETest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnEQ.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIADDITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNeg.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIANDITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testFromInteger.st │ │ └── testSetImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIBBLTUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNegImm.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIJALRTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILBTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNeg.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILBUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILHTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNeg.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILHUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IILWTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIORITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISLLITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testFromInteger.st │ │ └── testSetImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISLTITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnFalse.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISLTIUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnFalse.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISRAITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNeg.st │ │ ├── testFromInteger.st │ │ └── testSetImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IISRLITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testFromInteger.st │ │ └── testSetImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IIXORITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IJJALTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNeg.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IORTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISLLTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISLTTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISLTUTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISRATest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testExecuteOnNeg.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISRLTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISSBTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISSHTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISSWTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32ISUBTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RV32IUAUIPCTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testFromInteger.st │ │ └── testImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IULUITest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ ├── testFromInteger.st │ │ └── testSetImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RV32IXORTest.class │ ├── README.md │ ├── instance │ │ ├── testAsInteger.st │ │ ├── testExecuteOn.st │ │ └── testFromInteger.st │ ├── methodProperties.json │ └── properties.json ├── RVCPUBasicTest.class │ ├── README.md │ ├── instance │ │ ├── manualProgram1.st │ │ └── testManualProgram1.st │ ├── methodProperties.json │ └── properties.json ├── RVImmediatePartTest.class │ ├── README.md │ ├── instance │ │ └── testApplyToImmediateStartingAt.st │ ├── methodProperties.json │ └── properties.json ├── RVInstructionPartTest.class │ ├── README.md │ ├── instance │ │ ├── testApplyToStartingAt.st │ │ ├── testBitAt.st │ │ ├── testBitAtPut.st │ │ ├── testSetFromStartingAt.st │ │ ├── testSetFromStartingAtNonWriteable.st │ │ ├── testSetTo.st │ │ ├── testSetToNonWriteable.st │ │ └── testSize.st │ ├── methodProperties.json │ └── properties.json ├── RVInstructionTest.class │ ├── README.md │ ├── instance │ │ ├── testAddPart.st │ │ ├── testImmediateValue.st │ │ ├── testSetFromInteger.st │ │ └── testSetImmediateValue.st │ ├── methodProperties.json │ └── properties.json ├── RVMemoryTest.class │ ├── README.md │ ├── instance │ │ └── testByteAtPut.st │ ├── methodProperties.json │ └── properties.json ├── RVRegisterTest.class │ ├── README.md │ ├── instance │ │ ├── testAsSignedNegative.st │ │ ├── testOnesComplementOf.st │ │ └── testTwosComplementOf.st │ ├── methodProperties.json │ └── properties.json ├── monticello.meta │ ├── categories.st │ └── initializers.st └── properties.json ├── RISCV-Morphic.package ├── .filetree ├── .squot-contents ├── monticello.meta │ ├── categories.st │ └── initializers.st └── properties.json ├── RISCV-Squeak-Morphs.package ├── .filetree ├── .squot-contents ├── RVBitmapDisplayMorph.class │ ├── README.md │ ├── instance │ │ ├── initialize.st │ │ ├── memory..st │ │ ├── memory.st │ │ ├── segmentByteSize.st │ │ ├── segmentStartAddress.st │ │ ├── step.st │ │ ├── stepTime.st │ │ └── updateBits.st │ ├── methodProperties.json │ └── properties.json ├── RVBitmapDisplayMorphAligned.class │ ├── README.md │ ├── instance │ │ └── initialize.st │ ├── methodProperties.json │ └── properties.json ├── RVCPUBasic.extension │ ├── instance │ │ └── asMorph.st │ ├── methodProperties.json │ └── properties.json ├── RVCPUMorph.class │ ├── README.md │ ├── class │ │ └── openWindowOn..st │ ├── instance │ │ ├── clear.st │ │ ├── initialize.st │ │ ├── initializeRegisterMorphs.st │ │ ├── model..st │ │ ├── model.st │ │ ├── resetPC.st │ │ ├── stepInstruction.st │ │ └── updated.st │ ├── methodProperties.json │ └── properties.json ├── monticello.meta │ ├── categories.st │ └── initializers.st └── properties.json └── RISCV.package ├── .filetree ├── monticello.meta ├── categories.st ├── initializers.st └── package └── properties.json /.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/.filetree -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | { 2 | 'srcDirectory' : '' 3 | } -------------------------------------------------------------------------------- /.properties: -------------------------------------------------------------------------------- 1 | { 2 | #format : #filetree 3 | } 4 | -------------------------------------------------------------------------------- /.squot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/.squot -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/BaselineOfSafeBet.package/.filetree -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/BaselineOfSafeBet.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/BaselineOfSafeBet.class/instance/baseline..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/BaselineOfSafeBet.package/BaselineOfSafeBet.class/instance/baseline..st -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/BaselineOfSafeBet.class/instance/projectClass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/BaselineOfSafeBet.package/BaselineOfSafeBet.class/instance/projectClass.st -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/BaselineOfSafeBet.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/BaselineOfSafeBet.package/BaselineOfSafeBet.class/properties.json -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #BaselineOfSafeBet! 2 | -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'BaselineOfSafeBet') -------------------------------------------------------------------------------- /BaselineOfSafeBet.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/README.md -------------------------------------------------------------------------------- /RISCV-Examples.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/.filetree -------------------------------------------------------------------------------- /RISCV-Examples.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/.squot-contents -------------------------------------------------------------------------------- /RISCV-Examples.package/RVProgramExamples.class/README.md: -------------------------------------------------------------------------------- 1 | Various examples of 32 bit programs -------------------------------------------------------------------------------- /RISCV-Examples.package/RVProgramExamples.class/class/addFiveToSixProgram.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/RVProgramExamples.class/class/addFiveToSixProgram.st -------------------------------------------------------------------------------- /RISCV-Examples.package/RVProgramExamples.class/class/bitmapDrawProgram.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/RVProgramExamples.class/class/bitmapDrawProgram.st -------------------------------------------------------------------------------- /RISCV-Examples.package/RVProgramExamples.class/class/exampleAddFiveToSix.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/RVProgramExamples.class/class/exampleAddFiveToSix.st -------------------------------------------------------------------------------- /RISCV-Examples.package/RVProgramExamples.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/RVProgramExamples.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Examples.package/RVProgramExamples.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Examples.package/RVProgramExamples.class/properties.json -------------------------------------------------------------------------------- /RISCV-Examples.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Examples'! 2 | -------------------------------------------------------------------------------- /RISCV-Examples.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Examples.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /RISCV-Extensions-Pharo.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Extensions-Pharo.package/.filetree -------------------------------------------------------------------------------- /RISCV-Extensions-Pharo.package/OrderedDictionary.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "OrderedDictionary" 3 | } -------------------------------------------------------------------------------- /RISCV-Extensions-Pharo.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Extensions-Pharo'! 2 | -------------------------------------------------------------------------------- /RISCV-Extensions-Pharo.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Extensions-Pharo.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'RISCV-Extensions-Pharo') -------------------------------------------------------------------------------- /RISCV-Extensions-Pharo.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /RISCV-GToolkit.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/.filetree -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstruction.extension/instance/asBlElement.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstruction.extension/instance/asBlElement.st -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstruction.extension/instance/asGtView..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstruction.extension/instance/asGtView..st -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstruction.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstruction.extension/methodProperties.json -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstruction.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "RVInstruction" 3 | } -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionElement.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionElement.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstructionElement.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionElement.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstructionElement.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionElement.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstructionElement.class/properties.json -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionPart.extension/instance/asBlElement.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstructionPart.extension/instance/asBlElement.st -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionPart.extension/instance/asGtView..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstructionPart.extension/instance/asGtView..st -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionPart.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/RVInstructionPart.extension/methodProperties.json -------------------------------------------------------------------------------- /RISCV-GToolkit.package/RVInstructionPart.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "RVInstructionPart" 3 | } -------------------------------------------------------------------------------- /RISCV-GToolkit.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-GToolkit'! 2 | -------------------------------------------------------------------------------- /RISCV-GToolkit.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-GToolkit.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'RISCV-GToolkit') -------------------------------------------------------------------------------- /RISCV-GToolkit.package/monticello.meta/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-GToolkit.package/monticello.meta/version -------------------------------------------------------------------------------- /RISCV-GToolkit.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I-Tests.package/.filetree -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV32IILWTest.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "RV32IILWTest" 3 | } -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV64IILDTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV64IILDTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I-Tests.package/RV64IILDTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV64IILWUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV64IILWUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I-Tests.package/RV64IILWUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV64ISSDTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/RV64ISSDTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I-Tests.package/RV64ISSDTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Instructions-64I-Tests'! 2 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'RISCV-Instructions-64I-Tests') -------------------------------------------------------------------------------- /RISCV-Instructions-64I-Tests.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/.filetree -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILD.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILD.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILD.class/class/funct3.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | funct3 3 | ^ 2r011 -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILD.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILD.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILD.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILD.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILD.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LD -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILD.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILD.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILWU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILWU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILWU.class/class/funct3.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | funct3 3 | ^ 2r110 -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILWU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILWU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILWU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILWU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILWU.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LWU -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64IILWU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64IILWU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64ISSD.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64ISSD.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64ISSD.class/class/funct3.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | funct3 3 | ^ 2r011 -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64ISSD.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64ISSD.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64ISSD.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64ISSD.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64ISSD.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SD -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/RV64ISSD.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-64I.package/RV64ISSD.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Instructions-64I'! 2 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'RISCV-Instructions-64I') -------------------------------------------------------------------------------- /RISCV-Instructions-64I.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/.filetree -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/.squot-contents -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32I.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32I.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32I.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32I.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32I.class/instance/lenx.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32I.class/instance/lenx.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32I.class/instance/xlen.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32I.class/instance/xlen.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32I.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32I.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32I.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32I.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #ADD -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IADD.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IADD.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #AND -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IAND.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IAND.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/imm1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/imm1.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/imm2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/imm2.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/imm3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/imm3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/imm4.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/imm4.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/isSignedImmediate.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isSignedImmediate 3 | ^ true -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/opcode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/instance/opcode.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/rs1.st: -------------------------------------------------------------------------------- 1 | accessing 2 | rs1 3 | ^ rs1 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/instance/rs2.st: -------------------------------------------------------------------------------- 1 | accessing 2 | rs2 3 | ^ rs2 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IB.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IB.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBEQ.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/class/funct3.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | funct3 3 | ^ 2r000 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBEQ.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBEQ.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #BEQ -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBEQ.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBEQ.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBEQ.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGE.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGE.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGE.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGE.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #BGE -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGE.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGE.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGE.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGEU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGEU.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGEU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGEU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/instance/messageName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | messageName 3 | ^ #BGEU -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGEU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBGEU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBGEU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLT.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLT.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLT.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLT.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #BLT -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLT.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLT.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLT.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLTU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLTU.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLTU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLTU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #BLTU -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLTU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBLTU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBLTU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBNE.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBNE.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBNE.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBNE.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #BNE -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBNE.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IBBNE.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IBBNE.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IEBREAK.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/class/funct12Value.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IEBREAK.class/class/funct12Value.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IEBREAK.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IEBREAK.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #EBREAK -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IEBREAK.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IEBREAK.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IEBREAK.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IECALL.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/class/funct12Value.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IECALL.class/class/funct12Value.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IECALL.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IECALL.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #ECALL -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IECALL.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IECALL.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IECALL.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/fm.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | fm 3 | ^ fm -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/instance/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #FENCE -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/predecessor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/instance/predecessor.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/rd.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rd 3 | ^ rd -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/rs1.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs1 3 | ^ rs1 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/instance/successor.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/instance/successor.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IFENCE.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IFENCE.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/class/isSpecialJump.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/class/isSpecialJump.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/class/isSpecialized.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/class/isSpecialized.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/class/toggleBit.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/class/toggleBit.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/instance/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/imm1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/instance/imm1.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/instructionType.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionType 3 | ^ #I -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/isSignedImmediate.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isSignedImmediate 3 | ^ true -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/rd.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rd 3 | ^ rd -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/instance/rs1.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs1 3 | ^ rs1 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32II.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32II.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIADDI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIADDI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIADDI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIADDI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #ADDI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIADDI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIADDI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIADDI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIANDI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIANDI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIANDI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIANDI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #ANDI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIANDI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIANDI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIANDI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/class/isSpecialJump.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/class/isSpecialJump.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #JALR -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIJALR.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIJALR.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIL.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIL.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIL.class/class/funct3.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | funct3 3 | ^ 2r111 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIL.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIL.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIL.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIL.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIL.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIL.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILB.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILB.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILB.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILB.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LB -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILB.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILB.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILB.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILBU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILBU.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILBU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILBU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LBU -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILBU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILBU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILBU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILH.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILH.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILH.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILH.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LH -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILH.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILH.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILH.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILHU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILHU.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILHU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILHU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LHU -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILHU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILHU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILHU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILW.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILW.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILW.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILW.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LW -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILW.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IILW.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IILW.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIORI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIORI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIORI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIORI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #ORI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIORI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIORI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIORI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/class/isSpecialized.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/class/isSpecialized.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/instance/imm2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/instance/imm2.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SLLI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/instance/shamt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/instance/shamt.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLLI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLLI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SLTI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTIU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTIU.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTIU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTIU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SLTIU -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/instance/isSignedImmediate.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isSignedImmediate 3 | ^ false -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTIU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISLTIU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISLTIU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/class/isSpecialized.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/class/isSpecialized.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/class/toggleBit.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/class/toggleBit.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/instance/imm2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/instance/imm2.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SRAI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/instance/shamt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/instance/shamt.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRAI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRAI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/class/isSpecialized.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/class/isSpecialized.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/instance/imm2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/instance/imm2.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SRLI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/instance/shamt.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/instance/shamt.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IISRLI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IISRLI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIXORI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIXORI.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIXORI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIXORI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #XORI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIXORI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IIXORI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IIXORI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/imm1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/instance/imm1.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/imm2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/instance/imm2.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/imm3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/instance/imm3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/imm4.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/instance/imm4.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/instance/rd.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rd 3 | ^ rd -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJ.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJ.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJJAL.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJJAL.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJJAL.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJJAL.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJJAL.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJJAL.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJJAL.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #JAL -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJJAL.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJJAL.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IJJAL.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IJJAL.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32INOP.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32INOP.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32INOP.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32INOP.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32INOP.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32INOP.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32INOP.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #NOP -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32INOP.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32INOP.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32INOP.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32INOP.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #OR -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IOR.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IOR.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/instance/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/instance/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/hasImmediate.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | hasImmediate 3 | ^ false -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/instructionName.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/instance/instructionName.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/instructionType.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionType 3 | ^ #R -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/opcode.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/instance/opcode.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/rd.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rd 3 | ^ rd -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/rs1.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs1 3 | ^ rs1 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/instance/rs2.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs2 3 | ^ rs2 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IR.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IR.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IRegister.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IRegister.class/class/xlen.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | xlen 3 | ^ 32 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IRegister.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IRegister.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IRegister.class/instance/printOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IRegister.class/instance/printOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IRegister.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IRegister.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IRegister.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IRegister.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/instance/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/imm1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/instance/imm1.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/imm2.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/instance/imm2.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/instructionType.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionType 3 | ^ #S -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/isSignedImmediate.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isSignedImmediate 3 | ^ true -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/rs1.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs1 3 | ^ rs1 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/instance/rs2.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs2 3 | ^ rs2 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IS.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IS.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SLL -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLL.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLL.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SLT -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLT.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLT.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SLTU -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISLTU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISLTU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SRA -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRA.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRA.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SRL -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISRL.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISRL.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSB.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSB.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSB.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSB.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SB -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSB.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSB.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSB.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSH.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSH.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSH.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSH.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/instance/intructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | intructionName 3 | ^ #SH -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSH.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSH.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSH.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSW.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSW.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSW.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSW.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SW -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSW.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISSW.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISSW.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #SUB -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISUB.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISUB.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/class/funct12Value.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/class/funct12Value.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/funct12.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/funct12.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/rd.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rd 3 | ^ rd -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/instance/rs1.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rs1 3 | ^ rs1 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32ISYSTEM.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32ISYSTEM.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/instance/imm1.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IU.class/instance/imm1.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IU.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/instance/initializeParts.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IU.class/instance/initializeParts.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/instance/rd.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | rd 3 | ^ rd -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IU.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IU.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IU.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IUAUIPC.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IUAUIPC.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IUAUIPC.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IUAUIPC.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IUAUIPC.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IUAUIPC.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IUAUIPC.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #AUIPC -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IUAUIPC.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IUAUIPC.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IUAUIPC.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IUAUIPC.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IULUI.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IULUI.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IULUI.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IULUI.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IULUI.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IULUI.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IULUI.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #LUI -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IULUI.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IULUI.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IULUI.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IULUI.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/class/funct3.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/class/funct3.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/class/funct7.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/class/funct7.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/instance/instructionName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | instructionName 3 | ^ #XOR -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV32IXOR.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV32IXOR.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV64IRegister.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV64IRegister.class/class/xlen.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | xlen 3 | ^ 64 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV64IRegister.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV64IRegister.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RV64IRegister.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RV64IRegister.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/asByteArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/asByteArray.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/asInteger.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/asInteger.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/bitAt..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/bitAt..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/bitAt.put..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/bitAt.put..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/byteSize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/byteSize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/concatWith..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/concatWith..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/onesComplement.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/onesComplement.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/printAsBinary.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/printAsBinary.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/readStream.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/readStream.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/signExtendTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/signExtendTo..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/size..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/size..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/size.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/size.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/twosComplement.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/twosComplement.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/instance/writeStream.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/instance/writeStream.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVBitfield.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVBitfield.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/class/example1024.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/class/example1024.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/class/example2048.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/class/example2048.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/class/xlen.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | xlen 3 | ^ 32 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/addSubscriber..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/addSubscriber..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/bootstrap..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/bootstrap..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/incrementPCBy..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/incrementPCBy..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/memory..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/memory..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/memory.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/memory.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/pcValue.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/pcValue.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/registerNamed..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/registerNamed..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/registers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/registers.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/run.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/run.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/runSync.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/runSync.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/runWithDelay..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/runWithDelay..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/running..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/running..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/running.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/running.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/tickSpeed.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/tickSpeed.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/instance/xlen.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/instance/xlen.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic64.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic64.class/class/xlen.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | xlen 3 | ^ 64 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic64.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic64.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic64.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic64.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVCPUBasic64.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVCPUBasic64.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVImmediatePart.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVImmediatePart.class/instance/isImmediatePart.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isImmediatePart 3 | ^ true -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVImmediatePart.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVImmediatePart.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVImmediatePart.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVImmediatePart.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/class/fromInteger..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/class/fromInteger..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/class/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/class/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/addPart..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/addPart..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/asByteArray.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/asByteArray.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/asInteger.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/asInteger.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/executeOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/executeOn..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/immediates.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/immediates.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/instance/lenx.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/instance/lenx.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstruction.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstruction.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstructionPart.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstructionPart.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstructionPart.class/instance/isImmediatePart.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | isImmediatePart 3 | ^ false -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstructionPart.class/instance/setTo..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstructionPart.class/instance/setTo..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVInstructionPart.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVInstructionPart.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/class/size..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/class/size..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/instance/byteAt..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/instance/byteAt..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/instance/byteAt.put..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/instance/byteAt.put..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/instance/bytesAt.put..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/instance/bytesAt.put..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/instance/size..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/instance/size..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/instance/size.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/instance/size.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVMemory.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVMemory.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/README.md -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/class/xlen.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | xlen 3 | ^ 8 -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/negateBit..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/negateBit..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/registerName..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/registerName..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/registerName.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/registerName.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/value..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/value..st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/value.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/value.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/instance/width.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/instance/width.st -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/RVRegister.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Core.package/RVRegister.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Instructions-Core'! 2 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Core.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/.filetree -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/.squot-contents -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IADDTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IADDTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IADDTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IADDTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IADDTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IANDTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IANDTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IANDTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IANDTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IANDTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBEQTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBEQTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBEQTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBEQTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBEQTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBGETest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBGETest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBGETest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBGETest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBGETest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBGEUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBGEUTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBGEUTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBGEUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBGEUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBLTTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBLTTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBLTTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBLTTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBLTTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBNETest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBNETest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBNETest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IBBNETest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IBBNETest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIADDITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIADDITest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIADDITest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIADDITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIADDITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIANDITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIANDITest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIANDITest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIANDITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIANDITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIBBLTUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIBBLTUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIBBLTUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIJALRTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIJALRTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIJALRTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIJALRTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIJALRTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILBTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILBTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILBTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILBTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILBTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILBUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILBUTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILBUTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILBUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILBUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILHTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILHTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILHTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILHTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILHTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILHUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILHUTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILHUTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILHUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILHUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILWTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILWTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILWTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IILWTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IILWTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIORITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIORITest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIORITest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIORITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIORITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLLITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLLITest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IISLLITest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLLITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IISLLITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLTITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLTITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IISLTITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLTIUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISLTIUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IISLTIUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISRAITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISRAITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IISRAITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISRLITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IISRLITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IISRLITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIXORITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IIXORITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IIXORITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IJJALTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IJJALTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IJJALTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IORTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IORTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IORTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IORTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IORTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLLTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLLTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISLLTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLLTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISLLTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLTTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLTTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISLTTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLTTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISLTTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLTUTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISLTUTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISLTUTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISRATest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISRATest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISRATest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISRATest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISRATest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISRLTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISRLTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISRLTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISRLTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISRLTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSBTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSBTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISSBTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSBTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISSBTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSHTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSHTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISSHTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSHTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISSHTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSWTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSWTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISSWTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISSWTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISSWTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISUBTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISUBTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISUBTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32ISUBTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32ISUBTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IUAUIPCTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IUAUIPCTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IUAUIPCTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IULUITest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IULUITest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IULUITest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IXORTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IXORTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IXORTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RV32IXORTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RV32IXORTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVCPUBasicTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVCPUBasicTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RVCPUBasicTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVImmediatePartTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVInstructionPartTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVInstructionTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVInstructionTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RVInstructionTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVMemoryTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVMemoryTest.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RVMemoryTest.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVMemoryTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RVMemoryTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVRegisterTest.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/RVRegisterTest.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Instructions-Tests.package/RVRegisterTest.class/properties.json -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Instructions-Tests'! 2 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Instructions-Tests.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /RISCV-Morphic.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Morphic.package/.filetree -------------------------------------------------------------------------------- /RISCV-Morphic.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Morphic.package/.squot-contents -------------------------------------------------------------------------------- /RISCV-Morphic.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Morphic'! 2 | -------------------------------------------------------------------------------- /RISCV-Morphic.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Morphic.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/.filetree -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/.squot-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/.squot-contents -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/instance/memory.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/instance/memory.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/instance/step.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | step 3 | self updateBits -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/instance/stepTime.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | stepTime 3 | ^ 100 -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVBitmapDisplayMorph.class/properties.json -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVBitmapDisplayMorphAligned.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUBasic.extension/instance/asMorph.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUBasic.extension/instance/asMorph.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUBasic.extension/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUBasic.extension/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUBasic.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "RVCPUBasic" } 3 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/class/openWindowOn..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/class/openWindowOn..st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/clear.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/clear.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/initialize.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/initialize.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/model..st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/model..st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/model.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/model.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/resetPC.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/resetPC.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/stepInstruction.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/stepInstruction.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/updated.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/instance/updated.st -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/methodProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/methodProperties.json -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/RVCPUMorph.class/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV-Squeak-Morphs.package/RVCPUMorph.class/properties.json -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #'RISCV-Squeak-Morphs'! 2 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV-Squeak-Morphs.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /RISCV.package/.filetree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darth-cheney/safe-bet/HEAD/RISCV.package/.filetree -------------------------------------------------------------------------------- /RISCV.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #RISCV! 2 | -------------------------------------------------------------------------------- /RISCV.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RISCV.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'RISCV') -------------------------------------------------------------------------------- /RISCV.package/properties.json: -------------------------------------------------------------------------------- 1 | { } --------------------------------------------------------------------------------