News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

"ASSUME" Assumptions

Started by civilian, November 22, 2005, 12:34:17 AM

Previous topic - Next topic

civilian

ok...I am trying to assebble this assembly file, but I keep getting this error:  "error A2108: use of register assumed to ERROR"
I fgured from the documentation that its the result of ASSUME <REGISTER>:ERROR
But its nowhere is my code. So I was hoping if someone would help me see how to fix it :)
Here is a copy of the source file: http://akbar.homemail.com.au/kaillerasrv.asm

Thanks in advance :)

MichaelW

I believe this is the cause of your immediate problem:

;*******************************************************************
;* section    .text
;* V.A = 0x00401000 , init part size = 89428 , total size = 90112
;* flags :  code section ,  initialized data section ,  section executable ,  section readable

.data   ;<<====== this should be .code





eschew obfuscation

civilian