The MASM Forum

General => The Campus => Topic started by: jj2007 on January 01, 2023, 12:58:08 AM

Title: Unicode data declaration
Post by: jj2007 on January 01, 2023, 12:58:08 AM
include \masm32\include\masm32rt.inc
include _dw.asm
.code
_dw HelloW$, "Hello World", 0
start:
  invoke MessageBoxW, 0, addr HelloW$, uni$("Just a test:"), MB_OK
  exit
end start