;============================================================================= ; vesa_02.asm ; Check if 640*480*256 is present! ;(C)I don't take any responsibility for the use of this program ; Zedr0n -- connection closed ;============================================================================= ;============================================================================= ; .Com declaration ;============================================================================= .model tiny .data buffer db 256 dup(?) .code .386 org 100h ;============================================================================= ; Code segment ;============================================================================= start: mov ax,4F01h mov di,offset buffer mov cx,101h int 10h ret end start