I've just learned how to make 8-bit 16-bit and 32-bit Reg ARDS codetypes, and I'm trying to learn the others (perferably the ones that have to do with a value being less that something)
I've just learned how to make 8-bit 16-bit and 32-bit Reg ARDS codetypes, and I'm trying to learn the others (perferably the ones that have to do with a value being less that something)
I'm a noob as of the moment all that stuff is like in a different langage
It through me at first ;) but just read it over slowlyCode:32bit 'If less-than' instruction.
3XXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) < YYYYYYYY then execute the following block of instructions.
Conditional instructions can be nested.
32bit 'If less-than' instruction.
3XXXXXXX YYYYYYYY - If the value at (XXXXXXXX or 'offset' when address is 0) < YYYYYYYY then execute the following block of instructions.
This command is simple it means: If the value stored at XXXXXXX is less than the value given by YYYYYYYY then go on :)
So is XXXXXXXX a address? and is YYYYYYYY a value? If so, do I put the YYYYYYYY in hex version of decimal version?
No 0xXXXXXXX is the address the first number of this line is the code type in this case 32 bit less than conditional :)
yes all of ARDS coding is in hexidecimal
Can you like make a code and tell me the parts of it plz?
If you want to understand the parts of any non-ASM code, download the Code Analysis Lab in the Apps & Info section of the forums. Put in any non-ASM code you find on the site and it'll tell you what it's doing.
Ok thnx is there a way to find out if a code is asm or not by just looking at it?