macros.inc
changeset 89 1b3cea759eff
parent 88 c923295ee520
child 90 13c2deb919d1
--- a/macros.inc	Mon Jun 02 18:27:08 2014 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-; XXX: stupid thing won't parse, and it's right from the README example...
-; .ifndef _MACROS_INC_
-; .define _MACROS_INC_
-
-;; Store to memory address
-.macro poke
-		.message	"No parameters"
-.endm
-
-.macro poke_i_8_i
-		ldi			@1, @2
-		sts			@0, @1
-.endm
-
-.macro poke_i_16_i
-		ldi			@1, low(@3)
-		sts			@0+0, @1
-		
-		ldi			@2, high(@3)
-		sts			@0+1, @2
-.endm
-
-; .endif