Fix compilation issue on C90 compilers (gcc 4.8 was failing to compile with default flags) - updated following comment.

This commit is contained in:
carl 2019-02-13 00:17:45 +08:00
parent c63f527dde
commit 664338aa49

View file

@ -88,6 +88,8 @@ void bios_coldboot(void)
static void bios_warmboot(void)
{
int word;
int offset = 1;
dma = 0x0080;
if (!user_command_line[0])
@ -113,8 +115,6 @@ static void bios_warmboot(void)
read(fd, &ram[0x0100], 0xFE00);
close(fd);
int offset = 1;
int word;
for (word = 1; user_command_line[word]; word++)
{
if (word > 1)