I have been unable to add a dll file using the .NET Configuration 1.1 . Using 'add' from the drop down menu returns the message - "Unable to add the selected assembly. The assembly must have ...
Hi there,
Please help me in compiling and linking an Assembly program. This program deals with port input/output. When I compile this using TASM it is working fine but with MASM (ml.exe al...
my problem is with this command
cmp 0xfffffffc(%esi,%ebx,4),%eax
i don't know what "0xfffffffc(%esi,%ebx,4)" is
i know
0xfffffffc = 4294967292
$esi = -1075341976
$ebx = 2
...
What is difference between DOS Interrupts and BIOS Interrupts?
Please explain 3-4 differences.
thanks.
hi everyone, I'm trying to reverse engineer some crc checking on a old piece of software that is no longer supported...
I have the following examples of what is transmitted...
AA 01 02 0...
Hi everyone, I was hoping someone can help with an assignment from my assembly class, I'll be asking the instructor on friday but was hoping to get an answer sooner.
As the subject says, I ...
Assume i have sum = (4+3-2)/5
Hoe can i convert it to Assembly, i just need the gist part. Is the following correct?
MOV AX, 3
SUB AX, 2
ADD AX, 4
DIV AX, 5
MOV SUM, AX
i'm searching for a disassembler for linux. any ideas or experiences?
thanks in advance!
ike
I'm trying to finish a program that prompts the user for an integer and outputs the number in hex format. Yes...this is for an assignment, but I'm looking for some suggestions on which lines ...
I used to work on assembly programming( 8085 ) about 6 years ago. Is there a little free editor/ simulator that I can use to get back in touch with assembly languages?
Thanks
Greg
Hi everyone,
It's the classic binary bomb lab, and I'm completely stuck on phase 5. Here's what I got:
Three numbers will be entered into the program which the first two will bed positive. Multiply the first two then divide by the third. The third number can be either positive or negative.
1....
The compiler doesn't like the line: cmp [edi], [esi], "bad operand type"
Why?
Also would you have a look at what I'm doing with the compare loop (and the reason I am trying to do the abo...
Hi, I'm trying to get some predicates to check if two lists are equal..
this is what I have.
check([],[]).
check([X|T],[X|Z]) :-check(T,Z).
so if I do .
check([[1,2],[3,4]],[[1,2],[3,4]...
I'm trying to get the value of the register of eax at the address 0x8048dc0. The assembler dump is below. Basically it reads 6 numbers and compares them to value of eax and the above memory l...
I was just reading over an old Q here from several years ago...
How fast is your ASM hex converter?
http:/Assembly/Q_20272901.html
which was more of a fun challenge than a real...
I'm working on phase three of the bomb and I think I have a general idea on what kind of input I need was wondering if someone could verify.
It looks like I need to pass two inputs and the ...
I'm just getting started with assembly language programming. can anyone tell me how, using SPIM, I convert an ASCII string (which contains hex digits) to a binary value?
Thanks
produce a PIC 16F876 ASSEMBLY LANGUAGE SUB - ROUTINE WHICH WILL DISPLAY AN EIGHT BIT BINARY VALUE AS A HEXADECIMAL VALUE ON THE DUAL TIME MULTIPLEXED SEVEN SEGMENT DISPLAY OF THE SUPERPIC PCB
Hello!!!
Is there any place where I can see the hex value for each or almost all Opcodes?
For example:
$A1 = MOV EAX
Please, I need it kinda fast....
Thank you!!!
Hello all,
I got a problem when compile an asm file to 16-bit .obj. I used compiler ml.exe to do this work. Here is my command line:
ml /DIS_16 /c /W3 /Zi /nologo /Fo Disk16.obj Disk.asm
Th...
I guess I closed that last question too fast. [url]http://www.experts-exchange.com/Programming/Programming_Languages/Assembly/Q_20974198.html[/url]
What's the difference between CGA and VG...
ok so i got lucky with phase one since many of you know this assignment already. i saw that it called for the function strings_not_equal so i just did a strings bomb > strings.txt command and ...
My problem is: MASM does not work correctly:
Dos command: ml /Zi shell.asm
Contents of "Shell.asm" :
.xlist
include stdlib.a
includelib stdlib.lib
.list
.386
o...