No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: [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. … | |
Re: [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] … | |
Re: [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 … | |
Re: 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 … |
The End.