Fixed ARM11 access to chainloaded payloads

This commit is contained in:
Aurora
2016-04-01 14:27:31 +02:00
parent 5e99fb3aa0
commit 6b64a10362
9 changed files with 281 additions and 127 deletions

19
screeninit/source/types.h Executable file
View File

@@ -0,0 +1,19 @@
/*
* types.h
* by Reisyukaku
* Copyright (c) 2015 All Rights Reserved
*/
#pragma once
#include <stdint.h>
//Common data types
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef volatile u8 vu8;
typedef volatile u16 vu16;
typedef volatile u32 vu32;
typedef volatile u64 vu64;