shithub: scc

Download patch

ref: 73cfd3c699f20de73f64238d7e47abdb35c018d6
parent: ecd902397f5fbc94804263b0f301db24ff2605d4
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Thu Dec 14 10:14:11 EST 2017

[as-z80] Add = pseudo instruction

Unix assemblers use = instead of using equ. We can support both
without too many problems.

--- a/as/target/x80/x80.dat
+++ b/as/target/x80/x80.dat
@@ -14,6 +14,7 @@
 .DQ	imm64+	0	none	defq	Z80,R800,GB80
 .DEFQ	imm64+	0	none	defq	Z80,R800,GB80
 .EQU	imm16	0	none	equ	Z80,R800,GB80
+=	imm16	0	none	equ	Z80,R800,GB80
 NOP	none	1	0x00	noargs	Z80,R800,GB80
 EI	none	1	0xfb	noargs	Z80,R800,GB80
 DI	none	1	0xf3	noargs	Z80,R800,GB80