[v1.03][RISCV] Add basic Allwinner support

This commit is contained in:
Dr-Noob
2023-04-07 10:37:02 +02:00
parent 30a2493ad9
commit 0ef08ef53e
4 changed files with 18 additions and 2 deletions

View File

@@ -373,6 +373,8 @@ void choose_ascii_art(struct ascii* art, struct color** cs, struct terminal* ter
art->art = &logo_sifive;
else if(art->vendor == SOC_VENDOR_STARFIVE)
art->art = &logo_starfive;
else if(art->vendor == SOC_VENDOR_ALLWINNER)
art->art = &logo_allwinner;
else
art->art = &logo_riscv;
#endif