mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-04-24 03:51:22 +02:00
[SC64][SW] Add project license information in the bootloader
This commit is contained in:
parent
a59ad1d39b
commit
63feaa0c2e
sw/bootloader/src
@ -48,8 +48,7 @@ void exception_fatal_handler (uint32_t exception_code, exception_t *e) {
|
||||
display_printf(" s4: 0x%08lX s5: 0x%08lX s6: 0x%08lX s7: 0x%08lX\n", e->s4.u32, e->s5.u32, e->s6.u32, e->s7.u32);
|
||||
display_printf(" t8: 0x%08lX t9: 0x%08lX k0: 0x%08lX k1: 0x%08lX\n", e->t8.u32, e->t9.u32, e->k0.u32, e->k1.u32);
|
||||
display_printf(" gp: 0x%08lX sp: 0x%08lX s8: 0x%08lX ra: 0x%08lX\n", e->gp.u32, e->sp.u32, e->s8.u32, e->ra.u32);
|
||||
display_printf(" hi: 0x%016lX\n", e->hi.u64);
|
||||
display_printf(" lo: 0x%016lX\n", e->lo.u64);
|
||||
display_printf(" hi: 0x%016lX lo: 0x%016lX\n", e->hi.u64, e->lo.u64);
|
||||
|
||||
while (true);
|
||||
}
|
||||
|
@ -35,9 +35,10 @@ const struct {
|
||||
|
||||
|
||||
void version_print (void) {
|
||||
display_printf("[ SC64 bootloader metadata ]\n");
|
||||
display_printf("branch: %s | tag: %s\n", version.git_branch, version.git_tag);
|
||||
display_printf("[ SC64 btldr ] %s | %s\n", version.git_branch, version.git_tag);
|
||||
display_printf("sha: %s\n", version.git_sha);
|
||||
display_printf("msg: %s\n", version.git_message);
|
||||
display_printf("\n");
|
||||
display_printf("Copyright 2020 - 2025 Mateusz Faderewski\n");
|
||||
display_printf("Licensed under | FW/SW: GPL-3.0 | HW: CERN-OHL-S-2.0\n");
|
||||
display_printf("Official website: https://summercart64.dev\n\n");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user