headers/bsd: Add sys/queue.h.
[haiku.git] / src / system / kernel / arch / m68k / arch_030_asm.S
blob41b7fece8797b6af48b7b86a55625761703a0cf6
2 #include <asm_defs.h>
4 .text
7         /* that one can be inlined */
8 FUNCTION(flush_insn_pipeline_030):
9         nop
10         rts
11 FUNCTION_END(flush_insn_pipeline_030)
13         /* flush all ATC entries */
14 FUNCTION(flush_atc_all_030):
15         pflusha
16         rts
17 FUNCTION_END(flush_atc_all_030)
19         /* flush ATC entries for given address */
20 FUNCTION(flush_atc_addr_030):
21         move.l  (4,%a7),%a0
22         pflush  #0,#0,(%a0)
23         rts
24 FUNCTION_END(flush_atc_addr_030)