Tag: Assembly language
-
Error 3e6 with WriteFile
It looks like you will get error 3E6 when you call write file with an address not aligned to DWORD. ;===================================================================== ; hello.asm – Example Assembler program ; ; Author: Sheng Jiang ; Course: COSC 2425 ; Date: 5/23/05 ;===================================================================== .386 .MODEL flat, stdcall option casemap:none include windows.inc include kernel32.inc include masm32.inc includelib kernel32.lib includelib masm32.lib .DATA align 1 placeholder byte ? […]