www.pudn.com > iMagic_2006_0428_v098r23.rar > instruction.h
//
// This file define all the instructions that used in C program for MIPS/Lexra CPU
//
#ifndef __INSTRUCTION_H
#define __INSTRUCTION_H
#define BREAK_POINT() __asm("break 100")
#define CPU_SLEEP() __asm(" .word 0x42000038 ")
#endif