Simple Code Generator
You input a number as large as 2147483647 (2^15 - 1), the program then generates the code to
store that number across 1, 2, 3, or 4 bytes in registers of your choice.
Note: Register 1 is the LEAST significant byte, Register 4 is the MOST significant byte.
This program is handy for testing out addition, multiplication, division, or subtraction of
large numbers (e.g., 16 bit, 32 bit) in your asm program. I got tired on using windows calculator
to convert a big number into hex/dec, then separate each byte and write code so I made this little
application. It saved some time for me, hopefully it can help you too.
Download!
jut p shanahan of VRC Says: