mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 08:43:51 +00:00
12 lines
244 B
C
12 lines
244 B
C
#ifndef GRUB_MIPS_ASM_HEADER
|
|
#define GRUB_MIPS_ASM_HEADER 1
|
|
|
|
#if defined(_MIPS_SIM) && defined(_ABIN32) && _MIPS_SIM == _ABIN32
|
|
#define GRUB_ASM_T4 $a4
|
|
#define GRUB_ASM_T5 $a5
|
|
#else
|
|
#define GRUB_ASM_T4 $t4
|
|
#define GRUB_ASM_T5 $t5
|
|
#endif
|
|
#endif
|