Changeset 79092 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Jun 11, 2019 3:26:40 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-generated-1-data.py
r76553 r79092 229 229 self.offTests = -1; 230 230 self.cbTests = 0; 231 self.asLines = [] ;# type: list(str)232 self.aoInstructions = [] ;# type: list(iai.Instruction)231 self.asLines = [] # type: list(str) 232 self.aoInstructions = [] # type: list(iai.Instruction) 233 233 234 234 # Encode the tests. … … 296 296 297 297 def __init__(self, oMap, oInstr, oTests): 298 self.oMap = oMap ;# type: iai.InstructionMap299 self.oInstr = oInstr ;# type: iai.Instruction300 self.oTests = oTests ;# type: Bs3Cg1EncodedTests298 self.oMap = oMap # type: iai.InstructionMap 299 self.oInstr = oInstr # type: iai.Instruction 300 self.oTests = oTests # type: Bs3Cg1EncodedTests 301 301 302 302 self.asOpcodes = oMap.asLeadOpcodes + [ '0x%02x' % (oInstr.getOpcodeByte(),) ]; … … 410 410 411 411 def __init__(self): 412 self.aoInstructions = [] ;# type: Bs3Cg1Instruction413 self.aoTests = [] ;# type: Bs3Cg1EncodedTests412 self.aoInstructions = [] # type: Bs3Cg1Instruction 413 self.aoTests = [] # type: Bs3Cg1EncodedTests 414 414 self.cbTests = 0; 415 415
Note:
See TracChangeset
for help on using the changeset viewer.