•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Assembly section within the Software Development category of DaniWeb, a massive community of 403,577 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,222 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Assembly advertiser: Programming Forums
•
•
•
•
•
•
•
•
Will demonstrate dumping the registers. (View Snippet)
A program that will test the Nonrecursive Factorial procedure using a value passed in by the program user and will also do a time comparision of the Nonrecursive and Recursive Factorial functions. (View Snippet)
A test program that will call the PROC findGCD, passing in the integer values input by the user and then it will display the results to the screen. (View Snippet)
There are numerous calls to Win32 API that return detailed information as to failure via GetLastError (). I've devised a method by which to get the textual information corresponding to error and the address of the call that caused the violation. If GetLastError () returns null, then it can serve... (View Snippet)
This is a program I wrote for my x86 assembly class which computes the sum of n numbers. It uses Irvine32.inc which came with the textbook. (View Snippet)
This is a program I wrote for my x86 assembly class which bounces an ASCII ball across the screen. It uses Irvine32.inc which came with the textbook. (View Snippet)
This is somewhat a simple project I wrote by getting help from google groups I always recommend.
assemble this code using this command: (View Snippet)
User can enter an ascii string of up to 48 characters consisting of 1's or 0's, with randomly interspersed whitespace.
IE: 1011111001011110 will be evaulated equally to
Algorithm parses from right to left so will be truncated at 16 position
Purpose is to give all those still programming in... (View Snippet)
I use GetTickCount in a lot of my applications, so I built this snippet to convert to hours minutes and seconds. Leading extraneous data is excluded from output. (View Snippet)
This is a very simple program that uses text mode to display a boucing "ball." The ball is just a character that moves across the screen, erasing all in its path. It is coded to work like a screensaver, so the program ends when any key is hit.
NOTE: I am in no ways an assembly guru, if anything... (View Snippet)