This has been puzzling me for a while - of what use is the LEA instruction?
To me it just looks like a MOV instruction which can take a relatively-complex second argument - nothing that can...
Generate the first 21 members of the Fibonacci sequence, store them in Memory, and use Dump Memory to display the sequence using Assembly code for intel based computers. I am trying to use us...
Dear experts,
I'm trying to learn assembly language based on available resources online, but I'm stumped in multiplication. I've tried to look for other tutorials on the internet, but I sti...
Hey. I hope you can help me with converting some c code into assembly code, i have tried much now, and i still don't get it. What would help me alot, would be some comments for each line in th...
I wrote a program in (a86 )to sort the whole array into ascending order and its run ok but how can I make it more effcient(reducing unnecessary work) this is my code;
Code segment
Jmp...
Hi
I dont know even abc of 8086 ASM language. But i want learn some basic fundamentals of it. so that i can write and understand programs like these...
1. Addition of two 16bit numbers: ...
Hardware = a PIC 16F84, I use a crystal oscillator 4 MHz, in a multi-purpose test board with a MAX 232 to convert from TTL to CMOS. Also, a GPS receiver TFAG10, and a computer with Hypertermin...
Simple to do: I want the .hex file for the following .asm code so that I can program my PIC16F84 chip with it. Can someone copy and paste this into their MPLAB IDE and spit out the hex for m...
hello experts~!
i have a homework and i'm a bit stuck on it... i would appriciate if you could give me a jump start (pseudo code or c/c++ is fine).
assembler: NASM
problem: ta...
How to compile micro assembly language for BIOS and what assembly compiler do I need?
I am very new to writing in assembly.
My question is, if there is are bunch of characters entered in by the user, and I only want to access one character at a time, would the following code ...
Hi experts,
I dont know whats the error in this code,please help me to convert the numbers
data segment
count DW 8
BIN DW 8 dup(0)
HEX DB '0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F$'
msg...
hi there
I have a homework in which I need to enter a string so that the buffer bomb does not exploit and need some help. Here is the disassembly code for the bomb
-bash-3.1$ objdump -d bu...
Hi all,
What is the best method to convert from decimal to hexadecimal in MIPS? I'm currently working with using rol, andi, ori and an array size of 16 with two counter variables one to in...
Dear friends i am new on assembly language please writer the codes for these questions so that i can understand the assembly language more breifly. Thanks
1. Write A with white foregroun...
I have a homework in which I have to disassembler the code and figure out how to defuse the bomb. Can anyone help please
thanks
bomb-quiet: file format elf32-i386
Disassembly of s...
Hi,
Im trying to learn assembly, I got the tasm compiler, could someone tell me how to compile programs and direct me to some decent on - line tutorials?
Thanks
I am trying to figure out the Checksum alrorithm used by one of the printers I am working with. I have set up a serial communications monitoring interface and was able to record the "conversat...
I believe the disp_sum (last) call is incorrect because the program will execute but the sum will not be displayed.
Project is due tomorrow (11/27) so prompt assistance will be greatly apprec...
URGENT
I need to write an Intel 8085 program to multiply two integers of size 20 digits each ( For example : 19837653929987654321 x 90870054781976543975 ). Since you will not find an 8085 m...
I am trying to multiply two 64 bit unsigned numbers using only 32 bit words. I understand how to multiply two 32 bit unsigned numbers but I cant figure out how to get the 64 bit number into tw...
How do I write an x86 assembly function that recursivly calculates exp(2,n) ie 2^n using the stack to pass n.
Please note the code below is stuck in a loop only run in your debugger, plus i...
Hello, I am needing help with the Binary Bomb Assignment. I have completed phase one by using the x /s command. I am now stuck on phase 2.
From what I understand, the the function call rea...
Anyone know the clear screen code in 8085 assemply language....maybe like a bdos code of something to call...?
I am working through the CS:APP textbook (auditing a class at the local state U) and I'm trying to complete the final phase of the binary bomb lab. Basically, I need to figure out what string...