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
Ranked #44.2K
~7K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for dolkk

[QUOTE=dolkk;1157680]Hi guys, I am a [COLOR="red"]newbie[/COLOR] in writing programs in assembly language. Can anyone teach me how to write a simple code to develop a basic graphic user interface. I am currently working on a project to create a musical game that requires user interaction. Your assistance is greatly appreciated. …

Member Avatar for DENE@DANI
0
140
Member Avatar for Dabdob

[quote=notnull;1132926]here's code that finds the maximum value in an array of bytes. [code] bits 16 org 100h start: Mov bx, arr mov al, [bx] xor di, di inc di start_l: Cmp byte [bx+di], 0 jz exit cmp al, [bx+di] jb swap return: Inc di jmp start_l swap: Mov al, [bx+di] …

Member Avatar for ashenafiye
0
7K
Member Avatar for beckyzammi

[QUOTE=beckyzammi;1148731]Hey guys, i wrote a program in assembly for the 80C51 and it worked but now i have to write the same one for the PIC16F84A in assembly language, and it just wont work. Can someone figure out what mistakes i did? This program controls one 7-segment display to count …

Member Avatar for DENE@DANI
0
220
Member Avatar for Nathan Campos

I for one use Masm. I am looking for a dissassembler which automatically divides code from dat. Does someone know if there is something like that around. I use DOS debug.exe but on veiwing the 'code' the data section is interpreted as code and data becomes mixed into the opcodes …

Member Avatar for NotNull
-1
93

The End.