Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for bobrien314

IS it possible to have text in the command line delimited by "" rather than white space?

Member Avatar for William Hemsworth
0
78
Member Avatar for bobrien314

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 a tree before, and i don't know how …

Member Avatar for BestJewSinceJC
0
183
Member Avatar for bobrien314

[code=x86] org 100h section.text openfile: mov dx,sendfile mov al,0h mov ah,03dh int 21h mov bx,ax mov [filehandle],bx filelength: mov ah,042h mov cx,0h mov dx,0h mov al,002h mov bx,[filehandle] int 21h shr ax,7 shl dx,9 or ax,dx mov bx,ax mov [filediv128],bx mov dl, bh mov ah, 02h int 21h mov dl, …

0
88
Member Avatar for bobrien314

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 but can anyone be of assistance please int main(int argc, …

Member Avatar for bobrien314
0
80
Member Avatar for bobrien314

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 problem that i am writing about is when i return the …

Member Avatar for nucleon
0
102
Member Avatar for bobrien314

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. [code=java] import java.io.*; import java.util.*; public class hw { static …

Member Avatar for Ezzaral
0
98
Member Avatar for bobrien314

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?

Member Avatar for bobrien314
0
755
Member Avatar for bobrien314

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 thought everything was done right but it won't reverse, actually nothing …

0
77
Member Avatar for bobrien314

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 move teh info from the array over to the .text …

Member Avatar for sarehu
0
63