]> git.sur5r.net Git - cc65/blobdiff - src/ca65/objcode.c
New module strstack
[cc65] / src / ca65 / objcode.c
index 35d4dd841697fdf75e432b2ebf45bc9cb5a01321..9ca419c118c8e7ad86f874b4c8c7a376aea2855c 100644 (file)
@@ -86,16 +86,6 @@ void Emit3 (unsigned char OPC, ExprNode* Expr)
 
 
 
-void Emit3b (unsigned char OPC, ExprNode* Expr, ExprNode* Bank)
-/* Emit an instruction with a three byte argument and separate bank */
-{
-    Emit0 (OPC);
-    EmitWord (Expr);
-    EmitByte (Bank);
-}
-
-
-
 void EmitSigned (ExprNode* Expr, unsigned Size)
 /* Emit a signed expression with the given size */
 {