◀
Прекрасный ассемблер КР580ВМ80А
…
; 8080 assembler code .hexfile test.hex .binfile test.bin ; try "hex" for downloading in hex format .download bin .objcopy gobjcopy .postbuild echo "Hooray!" ;.nodump bdos equ 5 intv equ 38h .org 100h jmp begin db 27 msg: db 'Assembled by Pretty 8080 Assembler',0dh,0ah,'$' yeah: db 'Hoorj!',0dh,0ah,'$' begin: lxi d, msg mvi c, 9 call bdos call delay mvi c, 9 lxi d, yeah call bdos ret delay: mvi a, 33 hlt dcr a jnz .-2 ret