ASM80.com News

A log of new features

View on GitHub
3 January 2019

Version 2.4.2 - Macro nesting

Now you can nest a macro in another macro:

.macro one
 ld c,%%1
.endm

.macro two
 one 1
 add a,c
.endm