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
~193 People Reached
Favorite Forums
Favorite Tags
Member Avatar for joaonascimento

Hi! I have this program: [CODE]include emu8086.inc name "CALC" ; output file name (max 8 chars for DOS compatibility) ORG 100H JMP MAIN A DW ? B DW ? X DW 0, '$' Y DB 0, '$' MAIN: LEA DX, OPCAO CALL ESCREVA CALL LER MENU1: CMP AL,'1' JE SOMA …

0
42
Member Avatar for joaonascimento

Hello, I am a novice to program in assembly, how do I prompt the user to place two numbers and then do a sum with them? Please, help-me...

0
36
Member Avatar for joaonascimento

Hello, I'm new to assembly ... I wonder how I can write the variable res screen... By sending write writes trash... [B]Code:[/B][CODE]name "mycode" ; output file name (max 8 chars for DOS compatibility) ORG 100H JMP MAIN NUM1 DB 12H NUM2 DB 12H RES DB ? MAIN: LEA DX, OPCAO …

Member Avatar for wildgoose
0
115