├── ALT ├── BOOT1.ASM ├── BOOT1.IMG ├── BOOT1.TXT ├── BOOT2.ASM ├── BOOT2.IMG ├── BOOT2.TXT ├── BOOT3.ASM ├── BOOT3.IMG ├── BOOT3.TXT ├── HELLO1.ASM ├── HELLO1.COM ├── HELLO1.TXT ├── HELLO2.ASM ├── HELLO2.COM ├── HELLO2.TXT ├── HELLO3.ASM ├── HELLO3.COM ├── HELLO3.TXT └── README.md ├── CHANGES.md ├── HELLO.ASM ├── HELLO.COM ├── HELLO.TXT ├── LICENSE.md └── README.md /ALT/BOOT1.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT1.ASM -------------------------------------------------------------------------------- /ALT/BOOT1.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT1.IMG -------------------------------------------------------------------------------- /ALT/BOOT1.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT1.TXT -------------------------------------------------------------------------------- /ALT/BOOT2.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT2.ASM -------------------------------------------------------------------------------- /ALT/BOOT2.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT2.IMG -------------------------------------------------------------------------------- /ALT/BOOT2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT2.TXT -------------------------------------------------------------------------------- /ALT/BOOT3.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT3.ASM -------------------------------------------------------------------------------- /ALT/BOOT3.IMG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT3.IMG -------------------------------------------------------------------------------- /ALT/BOOT3.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/BOOT3.TXT -------------------------------------------------------------------------------- /ALT/HELLO1.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO1.ASM -------------------------------------------------------------------------------- /ALT/HELLO1.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO1.COM -------------------------------------------------------------------------------- /ALT/HELLO1.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO1.TXT -------------------------------------------------------------------------------- /ALT/HELLO2.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO2.ASM -------------------------------------------------------------------------------- /ALT/HELLO2.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO2.COM -------------------------------------------------------------------------------- /ALT/HELLO2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO2.TXT -------------------------------------------------------------------------------- /ALT/HELLO3.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO3.ASM -------------------------------------------------------------------------------- /ALT/HELLO3.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO3.COM -------------------------------------------------------------------------------- /ALT/HELLO3.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/HELLO3.TXT -------------------------------------------------------------------------------- /ALT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/ALT/README.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/CHANGES.md -------------------------------------------------------------------------------- /HELLO.ASM: -------------------------------------------------------------------------------- 1 | MOV AH, 9 2 | MOV DX, 108 3 | INT 21 4 | RET 5 | DB 'hello, world', D, A, '$' 6 | -------------------------------------------------------------------------------- /HELLO.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/HELLO.COM -------------------------------------------------------------------------------- /HELLO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/HELLO.TXT -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/hello/HEAD/README.md --------------------------------------------------------------------------------