;============================================================================= ; vesa_03.asm ; Test if protected mode interface is present ;(C)I don't take any responsibility for the use of this program ; Zedr0n -- connection closed ;============================================================================= ;============================================================================= ; .Com declaration ;============================================================================= .model tiny .data .code .386 org 100h ;============================================================================= ; Code segment ;============================================================================= start: mov ax,4F0Ah xor bl,bl int 10h ret end start