xref: /haiku/src/system/kernel/arch/m68k/arch_030_asm.S (revision 020cbad9d40235a2c50a81a42d69912a5ff8fbc4)
1
2#define FUNCTION(x) .global x; .type x,@function; x
3
4.text
5
6
7	/* that one can be inlined */
8FUNCTION(flush_insn_pipeline_030):
9	nop
10	rts
11
12	/* flush all ATC entries */
13FUNCTION(flush_atc_all_030):
14	pflusha
15	rts
16
17	/* flush all ATC entries */
18FUNCTION(flush_atc_addr_030):
19	move.l	(4,%a7),%a0
20	pflush	#0,#0,(%a0)
21	rts
22
23
24
25