1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-04 21:33:30 +00:00
Marcus Rowe 67cd0c2197 Added .asize and .isize pseudo variables
These pseudo variables will return the size of the accumulator/index
in bits.

For the 65816 instruction set .ASIZE/.ISIZE will return either 8 or 16,
depending on the current size of the operand in immediate addressing
mode.

For all other CPU instruction sets, .ASIZE/.ISIZE will always return 8.

For example:

	; Reverse Subtract with Accumulator
	; A = memory - A
	.macro rsb param
		.if .asize = 8
			eor	#$ff
		.else
			eor	#$ffff
		.endif
		sec
		adc	param
	.endmacro
2015-10-20 09:30:25 +10:00
..
2014-02-09 22:57:38 +01:00
2015-07-14 17:22:47 +02:00
2015-05-05 13:46:26 +02:00
2015-09-03 13:09:18 +02:00