Hi, i have find that code: and i would ask why was used the registry AL, AX and EAX if writing for example in EAX there is the possibility to compromise AX and AL?
I hope you have understand what I mean! Sorry my english!
Thanks!
program DemoMOVaddSUB;
#include( "stdlib.hhf" );
static
i8: int8 := -8;
i16: int16 := -16;
i32: int32 := -32;
begin DemoMOVaddSUB;
stdout.put
(
nl,
"Initialized values: i8=", i8,
", i16=", i16,
", i32=", i32,
nl
);
mov( 0, al ); // Compute i8 := -i8;
sub( i8, al );
mov( al, i8 );
mov( 0, ax ); // Compute i16 := -i16;
sub( i16, ax );
mov( ax, i16 );
mov( 0, eax ); // Compute i32 := -i32;
sub( i32, eax );
mov( eax, i32 );
// Display the absolute values:
stdout.put
(
nl,
"After negation: i8=", i8,
", i16=", i16,
", i32=", i32,
nl
);
end DemoMOVaddSUB;
You should post your question to the HLA Forum (http://www.masm32.com/board/index.php?board=9.0) to receive more support.
sorry, i'm new.
could you move that post tho HLA forum, please?
thanks!
Quote from: elettronico_79 on October 08, 2010, 07:11:38 PM
sorry, i'm new.
could you move that post tho HLA forum, please?
thanks!
Done
Quote from: elettronico_79
Hi, i have find that code: and i would ask why was used the register AL, AX and EAX if writing for example in EAX there is the possibility to compromise AX and AL?
I hope you have understand what I mean! Sorry my english!
The x86 supports working on 8, 16 and 32-bit quantities, and the latest generations will also support 64-bit.
An operation on EAX will impact AL,AH,AX as well. You have to be careful to use operations consistently so you don't get unexpected results.
However an 8-bit action on AL will not impact AH, and one on AH will not impact AL. If you are manipulation 8-bit ASCII characters for example, it is not necessary to use 32-bit operations, or 16-bit for that matter. It is sometimes more efficient these days to do 32-bit operations, but again you must understand numbers will not overflow the same way, and sign comparisons will be different.
in this example, there are 3 static variables. one of 8bits, one of 16 bits and one of 32bits. in order to manipulate these variables, you have to use registers that are corresponding size.
note that you can use registers that are bigger than what you need, but you have to use type casting in those cases.
you also asked about compromising values. this does happen but that is not important in this code since it does not need to retain values.
writing to EAX will compromise AX, AH and AL.
writing to to AX will compromise AH and AL, but it will leave the high order bit in EAX alone.
AH and AL are independent to each other.
this is roughly how they look
[ EAX ]
[ AX ]
[ AH ][ AL ]
but how can I know what global use registry i should use?
for example, if a program (like Media Player) is using all or o part of EAX and I i write in it with my program, media player will crash? How can i know what regitry are in use and i can't touch them?
thanks!
You mean 'registers' not 'registry' and you have access to all registers in your application you are not sharing them with other applications like Media Player
if you move a value to al you will however overwrite part of an eax value as al is part of eax
Quote from: elettronico_79
but how can I know what global use registry i should use?
for example, if a program (like Media Player) is using all or o part of EAX and I i write in it with my program, media player will crash? How can i know what regitry are in use and i can't touch them?
It's probably using EAX and ALL the other available REGISTERS (EBX, ECX, EDX, ESI, EDI, EBP, ESP, etc), it is however running in a different process context, so the registers it is using is of no concern to you.
is the operative sistem that manage the registres?
Quote from: elettronico_79 on October 10, 2010, 05:48:20 PM
is the OPERATING SYSTEM that manage the REGISTERS?
I wouldn't say the OS manages them, that's more of the applications job, the OS provides each process/thread with it's own CPU context in which to run. The multi-tasking OS switches between different CPU contexts, so each application appears to have the CPU to itself.
It is your job as the application writer to allocate the registers for your own purposes, and to save or reuse them as needed. Certain API and subroutines will use/destroy/preserve registers, either because they are following a register use/passing convention or because you have written them that way.
Quote from: elettronico_79 on October 10, 2010, 05:48:20 PM
is the operative sistem that manage the registres?
yes, when the operating system switches from one task to another, it saves register content and cpu state and restores it when the original task resumes.
you just have to worry about register use in your own applications, *and multi-threading* but you can worry about that later after you become comfortable with programming assembly language.
when i'm writing that message is firefox using some registers or it's only loaded in ram?
Quote from: elettronico_79 on October 11, 2010, 05:29:16 PM
when i'm writing that message is firefox using some registers or it's only loaded in ram?
The program, web pages and images are in RAM, the program is using the registers in the CPU to process the data. Each key press as you type involves a significant amount of processing before it gets to Firefox, and then Firefox and the OS expend considerably more processing to format and edit them and form the message to display to the screen. All this goes through the processor and uses registers. The processor is doing several trillion instructions in the time it takes you to type a couple of characters. Firefox was probably written in C or C++ and compiled into 80x86 machine code. An assembler can take your source code written in assembler and convert that directly into machine code. The machine code directs the processor to perform specific operations on registers and/or memory. The CPU should be considered as a complex and programmable state machine.
Perhaps you should review some books on Computer Science and Computer Architecture before embarking on assembler programming?
what you must understand is that the register set is unique for each process that the OS is running
the processor "saves" (in a sense) the registers before switching to a different process
you may also want to know that the windows API requires certain registers/flags to be preserved across calls
so, for anything that may be involved in a call-back function, you should preserve the following registers:
EBX
EBP
ESI
EDI
DF (direction flag) should always remain cleared (UP direction)
these registers may be trashed, and are often used to return result values:
EAX
ECX
EDX
in what sense the processor save the registres first to motify them? where it save them?
if the variables must be initialized by "static" why in that code were used "var" ?
var
i8: int8;
i16: int16;
i32: int32;
thank!
the processor doesn't save them, the operating system [os] does. the os maintains its own memory space and allocates process memory as requested.
in hla, when you use a 'var' it means hla is allocating space in the process stack for those variables, so the memory space is allocated dynamically rather than reserved in the initial process memory.
if you use 'static' or 'readonly', the memory space is a part of the object code and loaded into memory by the os.
if you use 'storage', the memory is reserved, so it takes less physical space. reserved memory is also allocated by the os when the object is loaded into memory.
so if i use "var" I can change the variable valor dinamically by the program (if i program that to do it) ?
in that line:
stdout.put( "2**(", LoopCntr:2, ") = ", pwrOf2:10, nl );
the "**" mean raised?
why in LoopCntr:2 and in pwrOf2:10 there is the colon ? what mean?
thanks!
Quote from: elettronico_79 on October 19, 2010, 02:47:07 PM
so if i use "var" I can change the variable valor dinamically by the program (if i program that to do it) ?
well yes, but that's not what it means. you can do the same with static and storage variables. what var means is that the
memory for the variable is allocated dynamically on the stack.
Quote
in that line:
stdout.put( "2**(", LoopCntr:2, ") = ", pwrOf2:10, nl );
the "**" mean raised?
that part will print out the string "2**(" on the output.
Quote
why in LoopCntr:2 and in pwrOf2:10 there is the colon ? what mean?
thanks!
those are for formatting strings on the output into columns, they serve no other purpose.
for example LoopCntr:2 will be formatted in 2 columns ?
yes.
if i add the exadecimal value 9 + 1 by an hla program, it give me a decimal or exadecimal value? if exadecimal, how can i have a decimal result ?
what's the difference between stdout.puti32( ebx ); and stdout.put( ebx ); ?
thanks!
Quote from: elettronico_79 on October 31, 2010, 04:49:51 PM
if i add the exadecimal value 9 + 1 by an hla program, it give me a decimal or exadecimal value? if exadecimal, how can i have a decimal result ?
do you mean hexadecimal? if you want to use hexadecimal, use the hexadecimal notation, eg: $9 + $1
Quote
what's the difference between stdout.puti32( ebx ); and stdout.put( ebx ); ?
thanks!
all the puti32 functions convert the output to 32 bit integer before displaying. if you use the put macro instead and don't specify type, the display for registers will be in expanded hexadecimal format, eg: 32 bit register will display 8 characters.
you aren't actually adding hex values
you are adding binary values
CPU's don't speak hexidecimal, strictly speaking - programmers do
hex is a convenient way to express and comprehend binary values
sorry if i make some mistake with english but isn't my mother tongue.
so if I use puti32 and in eax there is the decimal 23.4, will be converted in 23 ?
what mean "the H.O. bit of a number is a sign bit" ? if I have $7FFF how I can know that it's positive?
i haven't understand what are the instruction NOT, AND, OR, XOR for?
i have found that example program. the first part is simple, but if I write the 2 operands it put the first in ecx (why?) and what do after by AND ?
program LogicalOp;
#include( "stdlib.hhf" );
begin LogicalOp;
stdout.put( "Input left operand: " );
stdin.get( eax );
stdout.put( "Input right operand: " );
stdin.get( ebx );
mov( eax, ecx );
and( ebx, ecx );
stdout.put( "$", eax, " AND $", ebx, " = $", ecx, nl );
end LogicalOp;
thank!
Quote from: elettronico_79 on November 01, 2010, 05:41:02 PM
sorry if i make some mistake with english but isn't my mother tongue.
so if I use puti32 and in eax there is the decimal 23.4, will be converted in 23 ?
no, it will display the contents of EAX as a 32 bit integer. if you want to display a 32 bit real value, use putr32 function. read the manual on how to change decimal to scientific notation if desired.
Quote
what mean "the H.O. bit of a number is a sign bit" ? if I have $7FFF how I can know that it's positive?
the H.O. bit or 'high order bit' is the bit to the left-most bit of the register. that is the sign bit for signed evaluation. if it is a 1, the number is negative, if 0, the number is positive.
Quote
i haven't understand what are the instruction NOT, AND, OR, XOR for?
i have found that example program. the first part is simple, but if I write the 2 operands it put the first in ecx (why?) and what do after by AND ?
program LogicalOp;
#include( "stdlib.hhf" );
begin LogicalOp;
stdout.put( "Input left operand: " );
stdin.get( eax );
stdout.put( "Input right operand: " );
stdin.get( ebx );
mov( eax, ecx );
and( ebx, ecx );
stdout.put( "$", eax, " AND $", ebx, " = $", ecx, nl );
end LogicalOp;
thank!
these are logical operations that change the destination operand. we put it in ecx first to preserve what is in eax.
to learn more, read this quick description
http://www.ralphb.net/IPSubnet/logical.html
then read this more in depth review
http://en.wikipedia.org/wiki/Bitwise_operation
to experiment, i have written a program that allows you to see things in action.
see ccalc.zip attached. the ccalc.txt manual has some demo logical calculations you can test out on cCalc and see how they affect the registers.
article on
to have the H.O. bit i should convert the number in binary system? for example is $7FFF positive because in %0111_1111_1111_1111 the more left digit is 0 ?
Quotefor example is $7FFF positive because in %0111_1111_1111_1111 the more left digit is 0 ?
yes
you must understand that values may be either signed or unsigned
it depends on the context in which they are used
for example, let's take the dword value 80000000h:
if we display it with a decimal routine intended for
unsigned integers, it will yield 2147483648
if we take the same value and display it with a decimal routine intended for
signed integers, it will yield -2147483648
in calculations, you must know the context
this type of representation is known as "two's compliment"
adding 2 values together yields the same binary result whether they are signed or unsigned
if we add 7FFFFFFFh + 1, it will always yield 80000000h
in a signed context that is an overflow because the range of values (-2147483648 to +2147483647) has been exceeded
in an unsigned context, the range is 0 to 4294967295
now, let's add FFFFFFFFh + 1
again, the binary result will always be the same - 0
however, it is an overflow in
unsigned context, rather than signed
that is because the value FFFFFFFFh is -1 on the signed number line
on the unsigned number line, it is 4294967295
1)that code
mov( 0, al );
sub( i8, al );
mov( al, i8 );
mean "sub the value of i8 from al(0) and put the result in al" ?
2)what is the HLA instruction to add two binary or hexadecimals numerrs like %1000 + %1100 or $F + $F ?
3)stdout.putb(); convert the decimal number in an hexadecimal one and show it?
4)in the register the number are in hexadecimal and in the variables in decimal? according to that code:
program twosComplement;
#include( "stdlib.hhf" );
static
PosValue: int8;
NegValue: int8;
begin twosComplement;
stdout.put( "Enter an integer between 0 and 127: " );
stdin.get( PosValue );
mov( PosValue, al );
neg( al );
mov( al, NegValue );
stdout.put( "Hex result = $", al, nl );
stdout.put( "Decimal result = ", NegValue, nl );
end twosComplement;
thanks
Quote from: elettronico_79 on November 04, 2010, 07:39:07 PM
what is the HLA instruction to add two binary or hexadecimals numerrs like %1000 + %1100 or $F + $F ?
do you mean the compile time hla instruction or run time assembly instruction?
at compile time, it's done like the way you have it above.
if you want to add during run time, you have to use the assembly instruction add.
eg:
mov( $F, EAX );
add( $F, EAX ); // EAX = $F + $F
Quote
stdout.putb(); convert the decimal number in an hexadecimal one and show it?
no, it converts the *contents* of the byte sized variable or register to a hexadecimal value for display purposes. the contents of every variable and register are always binary. how it is treated is determined by the context of how it was declared or how it's type casted.
Quote
in the register the number are in hexadecimal and in the variables in decimal? according to that code:
the contents are always binary. the contents can be interpreted in any way you want.
for example, let's assume the register EAX contains the following value:
10111111_10011001_10011001_10011010
this is of course binary.
in hexadecimal, this is shown as: BF99999A
in unsigned decimal, this is as: 3214514586
in signed decimal, this is as: -1080452710
in 32bit real value, this is as: -1.2
in 32 bit real exponential, this is as: -1.2e+00
as you can see, the value changes depending on how you want the context represented.
Quote1)that code
mov( 0, al );
sub( i8, al );
mov( al, i8 );
mean "sub the value of i8 from al(0) and put the result in al" ?
that is correct
i think that is called "at&t syntax", where the source operand preceeds the destination operand
the operands are reversed in masm syntax
in masm syntax, it would be
mov al,0
sub al,i8
mov i8,al
slight correction, the result goes in i8, not al.
thanks for catching that, Sevag :P
here is his original question
1)that code
mov( 0, al );
sub( i8, al );
mov( al, i8 );
mean "sub the value of i8 from al(0) and put the result in al" ?
the result goes into i8
but if I remove the MOV, that is:
mov( 0, al );
sub( i8, al );
does only that code mean "sub the value of i8 from al(0) and put the result in al" ?
what is the instruction to show a register content in decimal?
i haven't undestuud what mean that phrase, could you help me ?
$8000 inverted becomes $7FFF. After adding one we obtain $8000! Wait, what's going on here? -(-32,768) is -32,768? Of course not. But the value +32,768 cannot be represented with a 16-bit signed number, so we cannot negate the smallest negative value.
Why bother with such a miserable numbering system? Why not use the H.O. bit as a sign flag, storing the positive equivalent of the number in the remaining bits? The answer lies in the hardware. As it turns out, negating values is the only tedious job. With the two's complement system, most other operations are as easy as the binary system. For example, suppose you were to perform the addition 5+(-5). The result is zero. Consider what happens when we add these two values in the two's complement system:
% 0000_0101
% 1111_1011
------------
%1_0000_0000
We end up with a carry into the ninth bit and all other bits are zero. As it turns out, if we ignore the carry out of the H.O. bit, adding two signed values always produces the correct result when using the two's complement numbering system. This means we can use the same hardware for signed and unsigned addition and subtraction. This wouldn't be the case with some other numbering systems.
Thanks :D
Quote from: elettronico_79 on November 11, 2010, 08:25:04 PM
but if I remove the MOV, that is:
mov( 0, al );
sub( i8, al );
does only that code mean "sub the value of i8 from al(0) and put the result in al" ?
i don't know what you mean by al(0). sub( i8, al ); means subtract the value of i8 from al.
Quote
what is the instruction to show a register content in decimal
signed or unsigned?
if you want to show a register in decimal, you can use one of two methods:
call one of the decimal output routines. they are all in the stdout namespace:
putu8, putu16, putu32 for unsigned
puti8, puti16, puti32 for singed
or you can use the put macro and type cast
stdout.put( (type uns32 eax) ); // display eax as an unsigned 32 bit decimal.
Quote
i haven't undestuud what mean that phrase, could you help me ?
$8000 inverted becomes $7FFF. After adding one we obtain $8000! Wait, what's going on here? -(-32,768) is -32,768? Of course not. But the value +32,768 cannot be represented with a 16-bit signed number, so we cannot negate the smallest negative value.
Why bother with such a miserable numbering system? Why not use the H.O. bit as a sign flag, storing the positive equivalent of the number in the remaining bits? The answer lies in the hardware. As it turns out, negating values is the only tedious job. With the two's complement system, most other operations are as easy as the binary system. For example, suppose you were to perform the addition 5+(-5). The result is zero. Consider what happens when we add these two values in the two's complement system:
% 0000_0101
% 1111_1011
------------
%1_0000_0000
We end up with a carry into the ninth bit and all other bits are zero. As it turns out, if we ignore the carry out of the H.O. bit, adding two signed values always produces the correct result when using the two's complement numbering system. This means we can use the same hardware for signed and unsigned addition and subtraction. This wouldn't be the case with some other numbering systems.
Thanks :D
it's basically explaining why two's compliment numbering system was chosen rather than just flagging the HO bit for signed representation. the way the hardware works with binary math made it more convenient to go with two's compliment.
Quote from: Sevag.K on November 11, 2010, 10:54:36 PM
Quote from: elettronico_79 on November 11, 2010, 08:25:04 PM
but if I remove the MOV, that is:
mov( 0, al );
sub( i8, al );
does only that code mean "sub the value of i8 from al(0) and put the result in al" ?
i don't know what you mean by al(0). sub( i8, al ); means subtract the value of i8 from al.
for al(0) i mean that after MOV the content of al is 0. Does sub(i8, al) put the result in al?
thanks
yes
in MASM, we would write it with the operands reverse order
mov al,0 ;set AL = 0
sub al,i8 ;subtract i8 from the contents of AL
yes, just remember that for instructions that have a destination operand, the result is stored in the destination operand.
what is the difference between HLA and MASM assembly?
i'm reading Art of assembly that speak about HLA, but is HLA a real assembly?
where can i learn MASM assembly?
why if i do 5 + (-5) in binary I obtain 100000000 (256d) instead of 0 ? %00000101 +% 11111011 =% 100000000 (256)
in that code, after i do stdout.putb(PosValue) every time i call in screen PosValue it will show a hexadecimal value?
if in processor number are ever in binary, why here used hexadecimal?
static
PosValue: int8;
begin twosComplement;
stdout.put( "Enter an integer between 0 and 127: " );
stdin.get( PosValue );
stdout.put( nl, "Value in hexadecimal: $" );
stdout.putb( PosValue );
thanks!
Quote from: elettronico_79 on December 12, 2010, 12:50:13 PM
what is the difference between HLA and MASM assembly?
syntax, features.
Quote
i'm reading Art of assembly that speak about HLA, but is HLA a real assembly?
yes.
Quote
where can i learn MASM assembly?
this forum would be a good place to start, check out the general forums and the genesys support forum.
Quote
why if i do 5 + (-5) in binary I obtain 100000000 (256d) instead of 0 ? %00000101 +% 11111011 =% 100000000 (256)
the answers are always in binary, how you display them varies on the display function you use.
Quote
in that code, after i do stdout.putb(PosValue) every time i call in screen PosValue it will show a hexadecimal value?
if in processor number are ever in binary, why here used hexadecimal?
static
PosValue: int8;
begin twosComplement;
stdout.put( "Enter an integer between 0 and 127: " );
stdin.get( PosValue );
stdout.put( nl, "Value in hexadecimal: $" );
stdout.putb( PosValue );
thanks!
putb is instruction to display in "hex byte" not "binary"
there is only an 8bit binary display function in hla, that is putbin8.
eg:
stdout.putbin8( PosValue );
though in the case of your example, the answer will be 0 since adding 5 + -5 = zero + carry. it will carry over into word size.
if you want to display a whole dword, you can write 4 consecutive butbin8:
stdout.putbin8( (type byte j[3] ) );
stdout.putbin8( (type byte j[2] ) );
stdout.putbin8( (type byte j[1] ) );
stdout.putbin8( (type byte j[0] ) );
a macro would be useful here if you plan on using a lot of this.
namespace stdout;
#macro putbin32( _parm_ );
stdout.putbin8( (type byte _parm_[3] ) );
stdout.putbin8( (type byte _parm_[2] ) );
stdout.putbin8( (type byte _parm_[1] ) );
stdout.putbin8( (type byte _parm_[0] ) );
#endmacro
end stdout;
...
stdout.putbin32( eax );
if i write a program that show the register for example by stdout.put(eax) and another program (like internet explorer) is using the same register, i will see the thinks that explorer putted into eax?
no
each process or thread has it's own set of registers
when the OS switches between tasks (called context switch), the register set and cpu state for that task is restored
if you want to see the registers in a program, you can use a debugger
there are several types of debuggers
a very simple one is called debug, and may be executed from a console command line
it is useful for debugging 16-bit programs
i saw that in C++ is possible use the assembly, but the HLA is allowed? o we need another assembly?
in HLA exist the If loigic instruction? an assembly language shouldn't have that instruction, right?
thanks :U
depending on which assembler you use, if/then/else constructs are supported
that, and macros are supported under masm
you can use macros to create even more high-level stuff :P
it's good to know what goes on underneath, though
otherwise, you aren't learning asm :bg
if i've understood right, HLA support the highter level instruction like If, else, while, etc... but there is the possibility to use (in HLA) lower level sstuff like zero flag and other, right?
so, if a debugger is written in a language, there should be some istruction or method to do what a debugger do? what are someone?
if i write a program in c++ and i need to use assembly, is HLA supported by c++ or i need another assembly language?
thanks and sorry if i bother :(
Quote from: elettronico_79 on December 18, 2010, 06:41:13 PM
if i've understood right, HLA support the highter level instruction like If, else, while, etc... but there is the possibility to use (in HLA) lower level sstuff like zero flag and other, right?
correct.
Quote
so, if a debugger is written in a language, there should be some istruction or method to do what a debugger do? what are someone?
there are operating system api that allow you to do what a debugger does. i haven't really looked into this api, but if you're interested, you should be able to find some information at msdn (for windows operating systems).
Quote
if i write a program in c++ and i need to use assembly, is HLA supported by c++ or i need another assembly language?
thanks and sorry if i bother :(
many c++ languages support inline assembly of various syntax. this is slowly being phased out. however, in any modular linked language, you can write the various modules in any other modular linked language and link them together.
most of the assemblers you will find here and elsewhere (hla, masm, fasm, goasm, nasm, wasm to name a few ) are modular linked languages or support modular linking.
what this means is that you can compile your source to objects, libraries or dlls and link them with c++ programs.
the logical instruction like XOR work only with the binaries number?
for example, is it possible to XOR a decimal or hexedecimal number? how?
and it's possible to XOR a phrase or a word ? what i obtain?
Thank!!
Quote from: elettronico_79 on December 25, 2010, 07:33:38 PM
the logical instruction like XOR work only with the binaries number?
all the instructions work only with binary numbers.
Quote
for example, is it possible to XOR a decimal or hexedecimal number? how?
just use xor as you normally would, it won't change the outcome. decimal or hexadecimal or floating point or whatever other format for human viewing are always converted from binary.
Quote
and it's possible to XOR a phrase or a word ? what i obtain?
Thank!!
the size of the object you can XOR depends on which instructions you use. in standard 32bit assembly, without accessing floating/mmx/sse type instructions the maximum is dword size (4 bytes). to XOR a phrase, you'll have to work through the phrase XORing one byte/word/dword at a time.
what you'll obtain is the compliment of the phrase. in binary terms, it will toggle all the zeros to ones and all the ones to zeros.
eg:
.........10011
XOR..00101
----------------
.........10110
if you want a visual of this, you can download cCalc.zip (attachment on page 2 of this thread) enter some numbers in it (decimal or hexa, toggled by menu) and you'll see the binary representations of these numbers and you can try out some x/86 instructions to see what effect they have on the numbers you entered.
ok, i will download cCalc, thank!
i have a doubt: if the XOR instruction only work with a pair of binary digits, what happen if the digits are more than two?
for example is possible to XOR 10011 or 00111 ? what all the operations to do?
Thank!
XOR is performed bitwise. = 10100
what does "bitwise" mean? i haven't found that word in my translation vocabulary!
is the two complement's system another way to rappresent the binary numbers? so for example the classical-binary number "1101" isn't the same in the 2 complement's but i should change the bit and add one "0011", right?
thank!
Quote from: elettronico_79 on January 20, 2011, 08:17:03 PM
what does "bitwise" mean? i haven't found that word in my translation vocabulary!
Hi,
For an operation like XOR "bitwise" means the the exclusive
or is performed on each bit in the destination. In a byte the
low order bit of the source operand would be XORed with the
low bit of the destination operand. And the second bit from
the source is XORed with the second bit of the destination.
And the is repeated for the remaining six bits in the byte,
"Bitwise" means perfom the action bit by bit for all bits.
Regards,
Steve
Steve is right, and it applies to all logic operations (OR, AND, XOR, NOT)
by contrast, math operations are not bitwise (ADD, SUB, NEG)
if you have the value 1 in a register, and ADD 1 to it, a carry is generated into the next bit
the logic functions do not generate carries, and the carry flag is always cleared, thus the term "bitwise"
well - for some reason, NOT does not clear carry - i don't know why they chose to do that
so, to XOR i must have at least 2 binary terms?
i can't XOR only one term like 0100, right?
thanks!
XOR is an operation, similar to ADD or SUB
it requires 2 operands :U
ok, i think to have understood now :8) thanks!
i've seen some assembly files that have the ".asm" extension, so what difference is there between asm and hla?
in what assembly are writed into the asm files?
if i've the microsoft visual c++ compiler to use the hla syntax should I indicate to visual c++ the hla compiler, right?
thanks :U
Quote from: elettronico_79 on January 27, 2011, 10:27:40 PM
ok, i think to have understood now :8) thanks!
i've seen some assembly files that have the ".asm" extension, so what difference is there between asm and hla?
in what assembly are writed into the asm files?
syntax. hla represents a specific assembly syntax while asm represents any assembly syntax.
Quote
if i've the microsoft visual c++ compiler to use the hla syntax should I indicate to visual c++ the hla compiler, right?
thanks :U
don't know enough about vc++ to comment on this.
Quote from: elettronico_79 on January 27, 2011, 10:27:40 PM
ok, i think to have understood now :8) thanks!
i've seen some assembly files that have the ".asm" extension, so what difference is there between asm and hla?
in what assembly are writed into the asm files?
try
hla -masm myprog.hla to generate the MASM code, or
hla -fasm myprog.hla for the FASM code, for example