Fix variable definition in header.

This commit is contained in:
Admiral H. Curtiss 2020-11-19 21:40:59 +01:00
parent e270886303
commit b040c6b50b
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,8 @@
/* Variables */
static const char certs_fs[] ATTRIBUTE_ALIGN(32) = "/sys/cert.sys";
u32 boot2version;
void __Sys_ResetCallback(void)
{
/* Reboot console */

View File

@ -1,7 +1,7 @@
#ifndef _SYS_H_
#define _SYS_H_
u32 boot2version;
extern u32 boot2version;
/* Prototypes */
bool isIOSstub(u8 ios_number);
bool loadIOS(int ios);