;============================================================================= ; VESA_01.ASM ; Get the brief info about video card ; Algorithm ; V1: ;(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,4F00h mov di,offset buffer int 10h ret end start