python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is .data thread safe?
My asm function works fine if its only one thread, but If try to use multi threading it makes the image almost fine, but there are some errors. I made sure that I push and pop registers that I use an...
thomas113412
Votes: 0
Answers: 0
Is there a way to cast integers to bytes, knowing these ints are in range of bytes. Using SSE?
In an xmm register I have 3 integers with values less than 256. I want to cast these to bytes, and save them to memory. I don't know how to approach it.
I was thinking about getting those numbers from...
thomas113412
Votes: 0
Answers: 1
SyntaxError while assembling .asm file becouse of .def file
I need to create .dll file and import it into .asm file to use.
The problem (i suppose) is with .def file, but I can`t find correct way to do that.
The .def file content is:
LIBRARY lab18_dll
EXPORTS ...
MiMiMiEnot
Votes: 0
Answers: 0
Print hello in 64-bit masm
I'm a noob for programing.
I want to write a program to show hello in 64-bit masm.
I use VS code with ml64.exe and gcc.
The following is what I write:
;; file name: hello.asm
printf proto
.data
m...
Yung-Tien Lai
Votes: 0
Answers: 2