mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
14 lines
267 B
C++
14 lines
267 B
C++
#ifndef BOOTLOADER_TRAMPOLINE_H
|
|
#define BOOTLOADER_TRAMPOLINE_H
|
|
|
|
namespace Bootloader {
|
|
|
|
#define TRAMPOLINES_COUNT 13
|
|
extern void* Trampolines[TRAMPOLINES_COUNT];
|
|
|
|
#define CUSTOM_TRAMPOLINES_COUNT 2
|
|
extern void* CustomTrampolines[CUSTOM_TRAMPOLINES_COUNT];
|
|
|
|
}
|
|
|
|
#endif |