[BITS 16]
[ORG 07C00h]
jmp start ;i added these 3 lines
;include Vesa.inc ; vesa structures & defines
;replaced by
%include "blob.inc"
start: ;I added this line
;Start proc
cli
xor ax, ax
mov ss, ax
=============================
struc VesaInfo
VesaSig: resd 1 ;+0
VesaVersion: resw 1 ;+4
VesaVendorOffset: resw 1 ;+6
;masm was using '?' eg db ? etc
This was the only data that was initialised ie ModeReserved: db 1
& it's giving this error...
'attempt to assemble code in [ABSOLUTE] space'
????
Any help much appreciated