Search Results

Showing results 1 to 31 of 31
Search took 0.01 seconds.
Search: Posts Made By: Spagett912
Forum: Assembly May 12th, 2008
Replies: 2
Views: 2,355
Posted By Spagett912
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,098
Posted By Spagett912
I don't know why but those functions don't seem to cooperate with my program
Forum: C++ May 10th, 2008
Replies: 10
Views: 921
Posted By Spagett912
i'm not sure at what point i'm supposed to close the loop cuz it seems no matter where i try to close it i get a ton more errors and i'm not sure what variable to put in front of response.
Forum: Assembly May 10th, 2008
Replies: 10
Views: 2,098
Posted By Spagett912
Is there some other way to output information other than using the "Print" command?
Forum: C++ May 10th, 2008
Replies: 10
Views: 921
Posted By Spagett912
OK thanks for the peices of help guys. Now i'm still having some problems which i'll show u what they are. But in the meantime, here are the changes that i made to the certain files.

...
Forum: Assembly May 10th, 2008
Replies: 10
Views: 2,098
Posted By Spagett912
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,098
Posted By Spagett912
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: C++ May 10th, 2008
Replies: 10
Views: 921
Posted By Spagett912
the errors that I get occur in the header.h file and they are:


C[Warning] `displayStatus' initialized and declared `extern'

24 variable or field `displayStatus' declared void

24 ...
Forum: Assembly May 9th, 2008
Replies: 10
Views: 2,098
Posted By Spagett912
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: C++ May 9th, 2008
Replies: 10
Views: 921
Posted By Spagett912
The problem is that I am unsure as to what else I need to add to the program in order to make it comile. With that being said, If you look above I mentioned that you can see what the aim of the...
Forum: Assembly May 8th, 2008
Replies: 10
Views: 2,098
Posted By Spagett912
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: C++ May 8th, 2008
Replies: 10
Views: 921
Posted By Spagett912
A while ago i had requested help for a Marital and Federal tax program. Unfortunately I'm making this program for a particularly picky person. So I ended up having to remake it somewhat. If someone...
Forum: C++ May 8th, 2008
Replies: 1
Views: 436
Posted By Spagett912
Ok sorry about that I had to clean up my post a little bit. Just read this one instead please:
Hey I've written a program that prompts the user to enter sides for a triangle and the program figures...
Forum: C++ May 8th, 2008
Replies: 1
Views: 436
Posted By Spagett912
Hey I've written a program that prompts the user to enter sides and the program figures out what kind of triangle the sides equal. I keep getting some retarted error saying "3 triangleCalc.cpp...
Forum: Assembly May 4th, 2008
Replies: 2
Views: 2,355
Posted By Spagett912
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: C++ May 4th, 2008
Replies: 1
Views: 702
Posted By Spagett912
Hey everyone I've created this Tic Tac Toe program and it seems to work. I just wanted to know if somebody could check it out and see if there are eny errors in it or changes that i should make. The...
Forum: C++ May 4th, 2008
Replies: 7
Views: 617
Posted By Spagett912
Wow thanks a lot man that really helps. I did everything you said including deleting that extra line. I believe it was 20. Anyway, i just have one more request. I can't seem to get it to output the...
Forum: C++ May 4th, 2008
Replies: 7
Views: 617
Posted By Spagett912
Sorry, Forgot to show you what I had so far...


#include <iostream>
#include <string>



using namespace std;
int main ()
Forum: C++ May 4th, 2008
Replies: 7
Views: 617
Posted By Spagett912
Hey that was pretty helpful, I'm just getting a little bit confused with the getData functions :(
Forum: Assembly May 3rd, 2008
Replies: 6
Views: 2,998
Posted By Spagett912
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: 2,998
Posted By Spagett912
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: C++ May 3rd, 2008
Replies: 7
Views: 617
Posted By Spagett912
Hey I had notice that my same problem was posted about 6 months ago but remained unsolved so I'm hoping that someone has the answer to my problem. I'm writing a tax program that does the following:...
Forum: Assembly May 3rd, 2008
Replies: 2
Views: 2,355
Posted By Spagett912
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: 2,998
Posted By Spagett912
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: 2,851
Posted By Spagett912
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: 595
Posted By Spagett912
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: C++ Apr 16th, 2008
Replies: 1
Views: 836
Posted By Spagett912
I'm solving a problem and am near completion but am having one little problem. I'm about to show the coding that i have but i need to make name, age, and weight value returning functions as well....
Forum: Assembly Apr 15th, 2008
Replies: 0
Views: 666
Posted By Spagett912
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...
Forum: C++ Apr 15th, 2008
Replies: 3
Views: 470
Posted By Spagett912
Hey I'm writing an address program as well. If anyone could help me with it i'd greatly appreciate it. I'm aware of how terrible looking it is but if someone can decipher what's going on in my...
Forum: C++ Apr 15th, 2008
Replies: 2
Views: 3,014
Posted By Spagett912
Thanks a lot i really appreciate it. I don't know why but coding became 100x's harder this time around.
Forum: C++ Apr 14th, 2008
Replies: 2
Views: 3,014
Posted By Spagett912
Hey I was looking online for a solution to a program I'm trying to write and came accross this message. I'm taking a programming class and it's getting pretty tough. I barely understand what's going...
Showing results 1 to 31 of 31

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC