Forum: Assembly Dec 9th, 2008 |
| Replies: 4 Views: 1,148 |
Forum: Assembly Dec 9th, 2008 |
| Replies: 4 Views: 1,148 No, just store during the program. I'm trying to input two strings, then put them in alphabetical order. I understand how to compare and order two strings that are hard coded. |
Forum: Assembly Dec 8th, 2008 |
| Replies: 4 Views: 1,148 How do I save a string? Say I type in "sfrider0." How do I store that then retrieve it later? I've been messing around with it for a while and the most I can get it to do is tell me how many... |
Forum: Assembly Dec 8th, 2008 |
| Replies: 6 Views: 1,041 Is the right? I'm using the push and everything. I'm still not using all the variable though(xVal, yVal, and &big). How would I incorporate those into my program?
INCLUDE Irvine32.inc
.data
... |
Forum: Assembly Dec 6th, 2008 |
| Replies: 6 Views: 1,041 Entering -9999 for both ends the program. Ok, I think I understand whats goin on now. I'll try that and see what happens. |
Forum: Assembly Dec 2nd, 2008 |
| Replies: 6 Views: 1,041 My homework assignment is to convert this c++ code into assembly. Here is the code
void maxInt (int xVal, int yVal, int& big)
{
big = xVal;
if ( big < yVal )
big = yVal;
... |