|
Still not there
The description of this category is "programming questions relating to assembly or c++".
I still haven't found good documentation for the syntax to use,but I might find some on Google,thank you.
I could get started if someone knew Tasm (or Masm)and could show me the syntax to change a file attribute.I wrote this but get nothing but error messages for every line:
segment
file db "C:/masm32/LOGOTEST.BMP$",0
ends
.code
start:
mov AX,file
mov DS,AX
mov AH,43
mov AL,1
ret
end start
Do I need to declare a stack? How does tasm (or Masm)do that?
|