llvm-mos-sdk
mapper.h
Go to the documentation of this file.
1 // Copyright 2022, 2023 LLVM-MOS Project
2 // Licensed under the Apache License, Version 2.0 with LLVM Exceptions.
3 // See https://github.com/llvm-mos/llvm-mos-sdk/blob/main/LICENSE for license
4 // information.
5 
6 #ifndef _MAPPER_H_
7 #define _MAPPER_H_
8 
9 #include <ines.h>
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
20 __attribute__((leaf)) void set_chr_bank(char bank_id);
21 
29 __attribute__((leaf)) void swap_chr_bank(char bank_id);
30 
38 __attribute__((leaf)) void split_chr_bank(char bank_id);
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif // _MAPPER_H_
ines.h
bank_id
char bank_id
Definition: mapper.h:97