The Tandy Color Computer from the 1980’s uses a Motorola 6809 microprocessor. If you want to get started with assembly … More
Category: assembly
Creating COM files from Debug scripts in DOSBox
To get around the issue of Debug.exe hanging while attempting to redirect input from a text file into DOS debug … More
MASM / TASM 16 Bit COM File
; filename: com.asm ; to assemble: ; MASM.EXE com.asm,,,, ; or: ; TASM com.asm ; then: ; LINK.EXE com.obj,,,, ; … More
NASM 16-bit EXE file example
This is an example Hello World ASM 16 Bit x86 assembly program which can be compiled and linked into a … More
Basic loader that shows how to poll for the run/stop key in C64 assembly
This is a basic loader that shows how to poll for the run/stop key in C64 assembly. It just loops … More
Open Watcom DOS 16bit EXE ASM Hello World
Build with Open Watcom Assember as a DOS 16Bit EXE Run in Windows 98 or DOSBox
The almost modern way to assemble 16bit DOS EXE files
It is still possible to easily compile 16bit DOS programs in this modern world on 64bit Windows. What you will … More
NASM 16-bit COM file example
The following is a simple NASM assembly hello world example that produces a 16-bit COM executable. It will not run … More