Forum: C Oct 5th, 2009 |
| Replies: 3 Views: 269 IS it possible to have text in the command line delimited by "" rather than white space? |
Forum: Java Apr 9th, 2009 |
| Replies: 1 Views: 1,675 I am trying to implement a breadth first search tree. I need to be able to go up and down the tree, and on each layer there can be varying amounts of nodes on each one. My problem is I've never made... |
Forum: Assembly Apr 8th, 2009 |
| Replies: 0 Views: 455 org 100h
section.text
openfile:
mov dx,sendfile
mov al,0h
mov ah,03dh
int 21h
mov bx,ax
mov [filehandle],bx |
Forum: C Apr 3rd, 2009 |
| Replies: 3 Views: 287 sorry johna i didn't try your so idk if works or not, but i was able to get it with sscanf from aia, thanks both of you for your help |
Forum: C Apr 3rd, 2009 |
| Replies: 3 Views: 287 I am trying to read an integer in from the command line, but it keeps reading in the ascii value as the int, and it completely blows up when the number is greater than 9. I know it's probably trivial... |
Forum: C Mar 19th, 2009 |
| Replies: 7 Views: 298 sizemal is the length i am recieving from the driver program telling how much space to allocate in memory, 18h is the size of the structure. neither is important, i just need to know why when i add... |
Forum: C Mar 19th, 2009 |
| Replies: 7 Views: 298 sbrk is working fine, this issue is i just want to increment the pointer by 18h. can you just add an int to a pointer and have it increment the address it is pointing to by 18h? |
Forum: C Mar 19th, 2009 |
| Replies: 7 Views: 298 sorry, Idk what you mean by code tags, comments??? but i need to use sbrk because i am writing my own malloc, my problem is that i am trying to add 18 to a pointer which i know returns 502048h, but... |
Forum: C Mar 19th, 2009 |
| Replies: 7 Views: 298 I have this assignment to write my own malloc program and I am having some trouble. I am using a doubly linked list to manage free space and used space, and using next fit to allocate the memory. the... |
Forum: Java Oct 4th, 2008 |
| Replies: 3 Views: 562 No I used text edit on a mac and saved it as javatest.txt |
Forum: Java Oct 3rd, 2008 |
| Replies: 3 Views: 562 I am writing a code to read in a mips file to look for data dependencys, but when i read the file in i get all kinds of goofy stuff coming in as well, thanks in advance for any help.
import... |
Forum: Assembly Apr 14th, 2008 |
| Replies: 2 Views: 1,720 ok i got the print list to work but for the add function i can't figure out the logic of how to find the previous node, here is my code so far:
.data
.word 0x10010018, 0x2, 0x10010020,... |
Forum: Assembly Apr 8th, 2008 |
| Replies: 2 Views: 1,720 I have an assignment to do a linked list in mips, but i cant find a good starting point, can someone offer some insignt, and also wouldi t ever be useful to use a linked list in mips? |
Forum: Assembly Mar 6th, 2008 |
| Replies: 0 Views: 523 I have an assignment due coming up and i am having a little bit of trouble. the purpose of the assignment is to reverse the values an array with the first value being the length of the array, I... |
Forum: Computer Science Jan 28th, 2008 |
| Replies: 1 Views: 656 Ok so I have this assignment in MIPS and have never used it before.
the assignment reads that i need to create a function to find the minimum value
in an array stored in the .word part. how do i... |