xref: /haiku/src/system/kernel/arch/m68k/arch_030_asm.S (revision 8df6a8dbf579280f55b61d725e470dee5d504e83)
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 ATC entries for given address */
18FUNCTION(flush_atc_addr_030):
19	move.l	(4,%a7),%a0
20	pflush	#0,#0,(%a0)
21	rts
22
23
24
25