kolibrios/drivers/old/radeonhd/stub.asm
Andrew Dent a7816e7613 Consistent use of KolibriOS name
- Ensure consistent naming for brand integrity.

git-svn-id: svn://kolibrios.org@10049 a494cfbc-eb01-0410-851d-a64ba20cac60
2024-05-22 10:10:18 +00:00

22 lines
632 B
NASM

format MZ
heap 0
stack 800h
entry main:start
segment main use16
start:
push cs
pop ds
mov dx, msg
mov ah, 9
int 21h ; DOS - PRINT STRING
; DS:DX -> string terminated by "$"
mov ax, 4C01h
int 21h ; DOS - 2+ - QUIT WITH EXIT CODE (EXIT)
; AL = exit code
; ---------------------------------------------------------------------------
msg db 'This is KolibriOS device driver.',0Dh,0Ah,'$',0