Forum: Assembly May 12th, 2008 |
| Replies: 2 Views: 2,470 Ok. For anyone who's been looking at this, I've made a slight modification to the program. I still can't get it to print out 10x10 and can't get a bubble sort algorithm to work. Here's what I got.
... |
Forum: Assembly May 11th, 2008 |
| Replies: 10 Views: 2,150 I don't know why but those functions don't seem to cooperate with my program |
Forum: Assembly May 10th, 2008 |
| Replies: 10 Views: 2,150 Is there some other way to output information other than using the "Print" command? |
Forum: Assembly May 10th, 2008 |
| Replies: 10 Views: 2,150 Ok now the only problems i'm getting is that cmpmem is an undefined symbol and print is undefined as well. Finally i have this error unmatched block nesting : main |
Forum: Assembly May 10th, 2008 |
| Replies: 10 Views: 2,150 Wow i'm really sorry about all that. I was looking at a different program that I wasn't allowed to use .IF statements. So thanks for the help I'll check out what u gave me now. |
Forum: Assembly May 9th, 2008 |
| Replies: 10 Views: 2,150 Ummm, yeah that isn't really what I expected lol since I'm using the Kip Irvine files. Btw sorry I think I forgot to mention we can't use .IF statements lol. |
Forum: Assembly May 8th, 2008 |
| Replies: 10 Views: 2,150 I'm trying to translate the following code from C++ into Asembly language but am having trouble. I know that I have to make a cmp and one or more jmp. If any1 has sugguestions or tips thats great.... |
Forum: Assembly May 4th, 2008 |
| Replies: 2 Views: 2,470 I have a bit of better Coding to go by so here's the new stuff.
INCLUDE Irvine32.inc
.data
count = 100
array WORD count DUP(?) |
Forum: Assembly May 3rd, 2008 |
| Replies: 6 Views: 3,112 i get the error
Error 1 error A2008: syntax error : print c:\Irvine\examples\ch04\Project_sample\main.asm
and the error
Error 2 error PRJ0019: A tool returned an error code from... |
Forum: Assembly May 3rd, 2008 |
| Replies: 6 Views: 3,112 Hey thanks a lot for helping me so quick. Unfortunately, i'm not that great at Assembly Language so I don't exactly follow where you are going with this coding. I tried to run it but I got an error... |
Forum: Assembly May 3rd, 2008 |
| Replies: 2 Views: 2,470 Once again I have found myself stuck on another problem in assembly langauge because it owns me. I am trying to write a program that uses the Bubble sort algorithm but to make things challenging I am... |
Forum: Assembly May 3rd, 2008 |
| Replies: 6 Views: 3,112 I had been writing a program that enforces the loop instruction with indirect addressing but I need it to copy a string from source to target, reversing the character order in the process. I need to... |
Forum: Assembly May 2nd, 2008 |
| Replies: 2 Views: 3,080 Hello everyone. I haven't started to write the program yet but I have the guidelines to make it. They are :
Write a function in assembly language called “factorial” with the following prototype:
... |
Forum: Assembly Apr 30th, 2008 |
| Replies: 0 Views: 635 TITLE Integer Summation Program (Sum4.asm)
; This program we had begun to modify to allow
; for "PromptForIntegers" to use parameter passing
; rather than using globals
INCLUDE... |
Forum: Assembly Apr 15th, 2008 |
| Replies: 0 Views: 683 Hey everyone and anyone who reads this. I'm trying to make a program that can have a function prompt for 2 integers:
void InputNumbers(int & num1, int & num2)
find the GCD of any 2 integers: int... |