-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathREADME
30 lines (18 loc) · 828 Bytes
/
README
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
# Resources for course: Computer Organization and Assembly Language
# recluze.net
# See full video course (in Urdu language) here: https://www.youtube.com/watch?v=eobVpYqvMGE&list=PLnd7R4Mcw3rJCvAduQxyySvejtBIaPs0O
# To set up in Ubuntu 20.04+
# Install Doxbox
sudo apt install dosbox
dosbox
# Inside dosbox (give it some path in your host machine)
# Put extracted contents of the zip file and .asm files in this folder on your host machine
mount c /home/nam/ee213
c:
# Assemble and run
nasm c.asm -o c.com
afd c.com
# Assemble with Listing
nasm c.asm -l c.lst -o c.com
# If after changing files, they do not show up in dosbox, hit Ctrl+F4 inside the dosbox window.
Zip file contains the 16-bit NASM and "Advanced Fullscreen Debugger".