No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hello all, I have a question about coupling C++ classes to a GUI, in a nice Object Oriented solution. The problem is as follows: I have designed a GUI application in a separate class Gui for instance, in a other source file I designed a hierarchical statemachine for my GUI … | |
Re: I don't know MIPS but i now it in x86 assembly, if you convert the statements into MIPS you have your MIPS implementation [code] //if (n == 0) cmp dword ptr [n],0 jne L2 //return 1; mov eax,1 jmp End_Fact //else //return n * fact(--n); L2: mov eax,dword ptr [n] … | |
Re: Have you checked that the readint and writestring procedure does not modify ax or bx, readint and writestring must have this statements if they use ax or bx: [code] readint PROC push ax push bx ; some code pop bx pop ax readint ENDP [/code] Same for writestring procedure What … | |
Re: Change 7E D6 into 7E DC, see below [code] main PROC mov dh,0 00401010 mov dh,0 C1: sub bl,cl 00401012 sub bl,cl mov al,bl 00401014 mov al,bl mov ah,0 00401016 mov ah,0 mov bh,2 00401018 mov bh,2 div bh 0040101A div al,bh cmp ah,0 0040101C cmp ah,0 je A1 0040101F … | |
Hello, My name is Marcel and I am new on this forum, I have a question about the following: I am working on a 16 bit application for a AM186ES processor (x86 compatible), this processor has no internal ROM or RAM. My application will be stored on a PC-Card from … |
The End.