-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx86OC.js
47 lines (43 loc) · 1.6 KB
/
x86OC.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const { ArthimeticInstructions } = require('./InstructionSet/ArithmeticInstructions/ArithmeticInstructions')
const { DataTransferInstructions } = require('./InstructionSet/DataTransferInstructions/DataTransferInstructions')
const { InstructionSetMap } = require('./InstructionSet/InstructionSetMap')
const DTI = new DataTransferInstructions()
const AI = new ArthimeticInstructions()
const readline = require('readline').createInterface({
input: process.stdin,
output: process.stdout,
})
function ask() {
readline.question(`Enter the instruction:\n`, instruction => {
findInstructionType(instruction.replace(/[^\w\s]/gi, ' ').split(' '))
})
}
function findInstructionType(instructions) {
let tempInstruction = instructions
instructions = []
tempInstruction.forEach(tempInst => {
if (tempInst == '') {
} else {
instructions.push(tempInst)
}
})
if (Array.isArray(instructions)) {
instruction = instructions[0]
switch (instruction) {
case InstructionSetMap.get('DTI')[InstructionSetMap.get('DTI').indexOf(instruction)]:
DTI.findAddressingModeAndGenOpCode(instructions);
break;
case InstructionSetMap.get('AI')[InstructionSetMap.get('AI').indexOf(instruction)]:
AI.findAddressingModeAndGenOpCode(instructions);
break;
default:
console.log(`Unknown instruction ${instructions[0]}`)
break;
}
} else {
if (instructions.toLowerCase() == 'quit')
readline.close()
}
ask()
}
ask()