calamari #1 Posted June 28, 2002 What are the < and > doing in a 6502 assembly language statement? Is it saying to make the value one less/more, or is it something else? For example: LDX #<c_PAGE_SIZE Thanks, calamari Quote Share this post Link to post Share on other sites
Thomas Jentzsch #2 Posted June 28, 2002 What are the < and > doing in a 6502 assembly language statement? Is it saying to make the value one less/more, or is it something else? < means, take the lower and > means, take the higher 8 bits from a 16 bit value (constant). Quote Share this post Link to post Share on other sites
calamari #3 Posted June 28, 2002 ahh that makes sense.. Thank you, calamari Quote Share this post Link to post Share on other sites