[v0.88][ARM] Add very basic SoC detection (Android only)

This commit is contained in:
Dr-Noob
2020-11-23 18:29:15 +01:00
parent 8927048c95
commit eaa86522a4
5 changed files with 73 additions and 10 deletions

10
src/arm/soc.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __SOC__
#define __SOC__
struct system_on_chip {
char* raw_name;
};
struct system_on_chip* get_soc();
#endif