Skip to content

harsh96/Assembler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASM Assembler

This can handle the following operations on byte-sized and word-sized registers: MOV, ADD, ADC, SUB, SBB, INT, JMP.

Compiling and Running

Compile using:

$ git clone https://github.com/harsh96/Assembler.git
$ cd Assembler/
$ gcc assembler.c

Run:

$ ./a.out

Sample input.txt:

MOV AH 2
MOV DX 17218
INT 33
MOV DL DH
INT 33
JMP M
L: ADD DL 5
INT 33
JMP N
M: MOV DL 65
INT 33
JMP L
N: MOV AH 76
INT 33
END

Sample machineCode.txt Generated:

10110100 2
10111010 17218
10001010 11010110
11101011 9
10110010 65
11101011 -15
10000000 11000010 5
11101011 9
10110100 76

Sample Output in STDOUT:

BCAF

License

MIT

Releases

No releases published

Packages

No packages published

Languages