32x: split sh2 code, compiler stub
[picodrive.git] / cpu / drc / cmn_arm.S
1 @ vim:filetype=armasm
2
3 .if 0
4 #include "cmn.h"
5 .endif
6
7 .global tcache
8 .global ssp_block_table
9 .global ssp_block_table_iram
10
11 @ translation cache buffer + pointer table
12 .data
13 .align 12 @ 4096
14 @.size tcache, SSP_TCACHE_SIZE
15 @.size ssp_block_table, SSP_BLOCKTAB_SIZE
16 @.size ssp_block_table_iram, SSP_BLOCKTAB_IRAM_SIZE
17 tcache:
18  .space SSP_TCACHE_SIZE
19 ssp_block_table:
20  .space SSP_BLOCKTAB_SIZE
21 ssp_block_table_iram:
22  .space SSP_BLOCKTAB_IRAM_SIZE
23  .space SSP_BLOCKTAB_ALIGN_SIZE
24
25