Showing related tags and posts accross the entire site.
-
Yes, it's available here . :D
-
Found it! RS Link: http://rapidshare.com/files/103923354/API-Guide_3_7.rar.html Thanks.
-
I'll see what I can do later. I'll look for my copy at home and attach it here.
-
I'd like to add, for gui apps: \masm32\bin\rc filename.rc \masm32\bin\ml /c /coff filename.asm \masm32\bin\link /SUBSYSTEM:WINDOWS /LIBPATH:c:\masm32\lib filename.obj filename.res Hi MrBogus, nice to see you here! :D
-
Hi there Joe! I'm not sure if you had a typo or not, but instead of using invoke FloatToString, why not try to use invoke FloatToStr or invoke FloatToStr2. Example: invoke FloatToStr2, answer [source], ADDR buffer [destination] LOCAL inString:DWORD LOCAL newFP:QWORD LOCAL answer1[20]:BYTE mov [inString...
-
I'm writing a program that takes in Floating Points and averages them for a CMSC class this weekend. My only problem seems to be the conversion of said floating poing values. When I run this little bit of code, all I ever get out is 41, no matter what I enter. Any help would be much appreicated....
-
Here's a cool tutorial for anyone who wants to do ASM on the GBA platform. :D From the site: In August of 2004 (which it is at time of writting), I finally got around to start rewritting the GBA ASM Tutorials. These probably won't be as friendly to the total stranger to ASM, but they'll ...
-
Yes, it's already out! Fetch it at its official website at http://www.winasm.net , happy coding!
-
Do you know any other PL? It would be advantageous if you know at least one. I suggest you choose an assembler that suites your needs, I'm personally using MASM32 (using the WinAsm Studio IDE) right now. There are others namely FASM, NASM.. HLA, etc. Also, you could grab the AoA 16-bit edition to...
-
Hi all! I just wanna ask the gurus, is it possible for a MASM32 program to connect to the web, then access a piece of data from that page? For example, on this page - http://www.bsp.gov.ph/keyrates.asp, I want my MASM32 program to fetch the current exchage rate. Is that possible? Thanks in advance! Regards...