Forum: Assembly Aug 20th, 2008 |
| Replies: 1 Views: 1,397 I hope I got it as well, but I'll give it a try:
When dividing a number with DIV then it returns the result in AX and the modulo in DX.
Communicating with a microchip can easily be done via the... |
Forum: Assembly May 3rd, 2008 |
| Replies: 3 Views: 899 the simpliest way that I can find right now is saving each occurance of a char in a new array. Basically like this:
string DB 'Hello Demonoid2008!",$
yourloop:
XOR EAX,EAX
MOV... |
Forum: Assembly Apr 20th, 2008 |
| Replies: 2 Views: 801 First of all, and this is my personal opinion, is assembly much more logical. When fussing around with pointers in C++ I always mess around after a while and don't have a clou which variable stands... |