Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0a3eae2 authored by Paul Burton's avatar Paul Burton
Browse files

MIPS: inst.h: define COP0 wait op



The func field for the wait instruction was missing from inst.h - this
patch adds it.

Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
parent 27476f3b
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -125,7 +125,8 @@ enum bcop_op {
enum cop0_coi_func {
enum cop0_coi_func {
	tlbr_op	      = 0x01, tlbwi_op	    = 0x02,
	tlbr_op	      = 0x01, tlbwi_op	    = 0x02,
	tlbwr_op      = 0x06, tlbp_op	    = 0x08,
	tlbwr_op      = 0x06, tlbp_op	    = 0x08,
	rfe_op	      = 0x10, eret_op	    = 0x18
	rfe_op	      = 0x10, eret_op	    = 0x18,
	wait_op       = 0x20,
};
};


/*
/*