01/10/2018, 09:41

Lỗi "Can't find locate file:irvine32.inc"

Trong phần 3 quyển sách “assembly language for x86 processors 6th edition” có 1 ví dụ về add và substract với thanh ghi eax,code như sau :

title add and substract

include Irvine32.inc

.code
	main proc
		mov eax,100000h
		add eax,400000h
		sub eax,200000h
		call DumpRegs

		exit
	main endp
	end main 

Sau khi run lên bằng tasm thì phát sinh lỗi trên.Mọi người giúp mình khắc phục nó với !!

Bài liên quan
0