Forum: Assembly Apr 8th, 2009 |
| Replies: 0 Views: 463 org 100h
section.text
openfile:
mov dx,sendfile
mov al,0h
mov ah,03dh
int 21h
mov bx,ax
mov [filehandle],bx |
Forum: Assembly Apr 14th, 2008 |
| Replies: 2 Views: 1,732 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,732 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: 526 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... |