#ifndef	_MIPSASM_H
#define	_MIPSASM_H

//----------------------------------------------------------------------------
// Mips Assembly Functions
//----------------------------------------------------------------------------
#define SYNC	__asm __volatile("sync")
#define NOP	__asm __volatile("nop")

#endif	// _MIPSASM_H
