I am trying to make a game in Assembly and I need to have the user enter something within a time period (Ex: 10 seconds). I cannot find anything online on how to implement something like this in MASM. Maybe I'm just searching wrong but it seems like everything I find is in NASM. Thanks!
Asked
Active
Viewed 182 times
0
-
2Possible duplicate of [MASM/NASM Differences](https://stackoverflow.com/questions/2035747/masm-nasm-differences) – Joseph Sible-Reinstate Monica Mar 07 '19 at 02:13
-
MASM and NASM are just minor syntactic variations of the same language. It's easy to mechanically convert one to the other. – Joseph Sible-Reinstate Monica Mar 07 '19 at 02:13
-
2What OS/Platform are you targeting? – Chris Taylor Mar 07 '19 at 03:00
-
Like Chris said, what target? The likely options for MASM are Windows (WinAPI system calls via DLLs), or DOS, or freestanding bootloader (legacy BIOS or UEFI). – Peter Cordes Mar 07 '19 at 22:29