2013-05-16 23:03:38 +00:00
|
|
|
/*
|
|
|
|
* VideoCore IV assembler for the ACK
|
|
|
|
* © 2013 David Given
|
|
|
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
|
|
|
* See the file 'Copying' in the root of the distribution for the full text.
|
|
|
|
*/
|
2013-05-17 22:30:49 +00:00
|
|
|
|
|
|
|
#include "binary.h"
|
|
|
|
|
|
|
|
#define ALWAYS 14
|
|
|
|
|
2013-05-19 11:39:35 +00:00
|
|
|
extern void alu_instr_reg(quad opcode, int cc, int rd, int ra, int rb);
|
|
|
|
extern void alu_instr_lit(quad opcode, int cc, int rd, int ra, quad value);
|
|
|
|
extern void misc_instr_reg(quad opcode, int cc, int rd, int ra, int rb);
|
|
|
|
extern void misc_instr_lit(quad opcode, int cc, int rd, int ra, quad value);
|
|
|
|
extern void branch_instr(int bl, int cc, struct expr_t* expr);
|
|
|
|
extern void stack_instr(quad opcode, int loreg, int hireg, int extrareg);
|
|
|
|
extern void mem_instr(quad opcode, int cc, int rd, long offset, int rs);
|
|
|
|
extern void mem_offset_instr(quad opcode, int cc, int rd, int qa, int rb);
|
|
|
|
extern void mem_postincr_instr(quad opcode, int cc, int rd, int rs);
|