Assembly
An assembly language is a low-level language for programming computers.
Application
Any
Platform
Any
License
Any
0)
{
z = z;
}
else
{
z = -z;
}
If 'z' is positive, then do "z = z", else do "z = -z".
can someone help me with this program i dont know how to do this program
without using macros.......
a program to initialize each element of an array
int fact; to the factorial of the subscript...
0 ? z : -z;
return x + y + z;
}
Simply to convert the binary value in memory,
into the printable ascii values,
one has but to
bit shift the operand by 4 to the right and left
for the low half-byte operand > 4,
and to the...
: Hello, how can I use logic gates in assembly? for example, apply an
: AND in a byte that I have defined. For example, if I have the
: following variable:
:
: variable db ?
:
: This is a 8...
hi all,
here i got strucked on auto incrementation of version using c# ,iam trying to do it programatically but i could able to change version number in variables but iam not able to write it back...
hi all;
this is my first post;
first i must say sorry for my english language :-p
i wana make program that controlng my serial prot output
i use a flat 9 wire cable and bind it to 9 pin socket...
i made a exe file. i copied it on cd rom. i want it should run automatically and no one can stop its execution as soon as i insert cd in cd rom. just like virus execute itself without any user input...
: I am beginner of assembly language programming. I am learning
: assembly language programming from video tutorials of Mr. Niel
: Dickson @ showmedo.com.
:
: In those videos it specified to...
I published my project. When i execute it, the first screen comes up , but then i get the error below.
Question 1: What is causing it?
Question 2: How do i go about creating a setup program,...
I am beginner of assembly language programming. I am learning assembly language programming from video tutorials of Mr. Niel Dickson @ showmedo.com.
In those videos it specified to use MASM32...
hi expertise,
how to convert decimal to hexa.
i did like this.
mov ax,12d ;ax=12 decimal
mov ah, 6 ; for output
mov dl, ax ;dl=ax
int 21h
but not work
please help me with example
: Hi to every body,
:
: i have searched around all internet and i can't find a response to
: solve this error. It is good to say that i'm new, and learning by my
: self from a book.
:
:...
: In theory this instructions are valid, because they JMP make a
: should jump to (change the IP register) the specified instrucion, in
: this case the instruction placed in 0100 position....
Hi to every body,
i have searched around all internet and i can't find a response to solve this error. It is good to say that i'm new, and learning by my self from a book.
well, the problem:...
I'm done with the C part..
#include
int main()
{
char num1;
char num2;
int i = 0;
int j = 0;
int z = 0;
int length = 0;
int carry = 0;
printf("Enter first number: ");...
This is the C/C++ board, so I assume that's the language. The assembler board can be found here.
9 )
{
result_str = sum / 10 + '0';
result_str = sum % 10 + '0';
}
else
{
result_str = sum;
}
You can work with numbers as large as you want by assigning them to strings. Then you simply work backwards through the strings, character by character performing your math tasks. Adding two...
: What do you need help with, more specifically?
i want to know what to use instead instead of int..
and also to know how to assign the sum by modifying the assembly code...