mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
bios: use puts for long string
This commit is contained in:
parent
8247f3a154
commit
07120e3c3e
1 changed files with 2 additions and 2 deletions
|
@ -427,7 +427,7 @@ static const char banner[] =
|
|||
"Built "__DATE__" "__TIME__"\n\n"
|
||||
"This program is free software: you can redistribute it and/or modify\n"
|
||||
"it under the terms of the GNU General Public License as published by\n"
|
||||
"the Free Software Foundation, version 3 of the License.\n";
|
||||
"the Free Software Foundation, version 3 of the License.";
|
||||
|
||||
static void readstr(char *s, int size)
|
||||
{
|
||||
|
@ -520,7 +520,7 @@ int main(int i, char **c)
|
|||
irq_setmask(0);
|
||||
irq_setie(1);
|
||||
uart_init();
|
||||
printf(banner);
|
||||
puts(banner);
|
||||
crcbios();
|
||||
if(rescue)
|
||||
printf("Rescue mode\n");
|
||||
|
|
Loading…
Reference in a new issue