- Unsigned integer 16 bits numbers (uint16)
- Choice of input/result number format
- Input number can be negative (start with '-')
- Negative result can be shown with '-'
- Available 4 number systems (dec, hex, oct, bin)
- Shows: sum, difference, multiplication, division, remainder of division
- Install & setup requires tools
- Build .OBJ files
- Link .OBJ files
- Run CALC.EXE
- MASM611
- ML.EXE (masm translator)
- LINK.EXE (linker .OBJ files)
Need to build 3 .asm files
1. Manually
ML.EXE /c calc\calc.asm
ML.EXE /c string\string.asm
ML.EXE /c convr\convr.asm
2. Using .bat file
BUILD.bat
Need to link 3 .OBJ files
1. Manually
LINK.EXE calc.obj string.obj convr.obj
2. Using .bat file
BLINK.bat
If you have any questions, please leave them HERE