NASM - The Netwide Assembler
NASM Forum => Using NASM => Topic started by: computertrick on February 17, 2010, 04:33:59 PM
-
Ok well i am planing to make my own calculator using nasm
it is going to be made completley from scratch even the machine
and unfortunatly i have no clue how to recive integers in nasm
for example in windows console applications when you type things it shows it in the console window
how can i do this in nasm for dos since i want to also make the operating system ???
-
Things to read:
- An ASCII Chart (http://www.jimprice.com/jim-asc.shtml)
- INT 0x16 (BIOS) (http://www.ctyme.com/intr/int-16.htm)
- INT 0x21 (DOS) (http://www.ctyme.com/intr/int-21.htm)
- NASM Doc Chapter 8:Writing 16-bit Code (DOS, Windows 3/3.1) (http://www.nasm.us/doc/nasmdoc8.html)
-
Thanks ill try them :)