https://www.youtube.com/watch?v=eobVpYqvMGE&list=PLnd7R4Mcw3rJCvAduQxyySvejtBIaPs0O
# 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".