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
~725 People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for marcel222

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 …

Member Avatar for Ancient Dragon
0
158
Member Avatar for shopnobhumi

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] …

Member Avatar for eng.ehsan07
0
129
Member Avatar for Fenrir190

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 …

Member Avatar for NotNull
0
157
Member Avatar for Jeff_5_7

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 …

Member Avatar for marcel222
0
233
Member Avatar for marcel222

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 …

0
48

The End.