Fix compilation issue on C90 compilers (gcc 4.8 was failing to compile with default flags) - updated following comment.
This commit is contained in:
parent
c63f527dde
commit
664338aa49
1 changed files with 2 additions and 2 deletions
|
@ -88,6 +88,8 @@ void bios_coldboot(void)
|
||||||
|
|
||||||
static void bios_warmboot(void)
|
static void bios_warmboot(void)
|
||||||
{
|
{
|
||||||
|
int word;
|
||||||
|
int offset = 1;
|
||||||
dma = 0x0080;
|
dma = 0x0080;
|
||||||
|
|
||||||
if (!user_command_line[0])
|
if (!user_command_line[0])
|
||||||
|
@ -113,8 +115,6 @@ static void bios_warmboot(void)
|
||||||
read(fd, &ram[0x0100], 0xFE00);
|
read(fd, &ram[0x0100], 0xFE00);
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
||||||
int offset = 1;
|
|
||||||
int word;
|
|
||||||
for (word = 1; user_command_line[word]; word++)
|
for (word = 1; user_command_line[word]; word++)
|
||||||
{
|
{
|
||||||
if (word > 1)
|
if (word > 1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue