diff --strip-tr -urN memtest86+-1.65/config.h memtest86+/config.h --- memtest86+-1.65/config.h 2005-09-11 20:17:15.000000000 +0200 +++ memtest86+/config.h 2006-01-02 18:39:56.000000000 +0100 @@ -13,10 +13,10 @@ /* SERIAL_CONSOLE_DEFAULT - The default state of the serial console. */ /* This is normally off since it slows down testing. Change to a 1 */ /* to enable. */ -#define SERIAL_CONSOLE_DEFAULT 0 +#define SERIAL_CONSOLE_DEFAULT 1 /* SERIAL_BAUD_RATE - Baud rate for the serial console */ -#define SERIAL_BAUD_RATE 9600 +#define SERIAL_BAUD_RATE 38400 /* BEEP_MODE - Beep on error. Default off, Change to 1 to enable */ #define BEEP_MODE 0 diff --strip-tr -urN memtest86+-1.65/Makefile memtest86+/Makefile --- memtest86+-1.65/Makefile 2005-09-11 20:17:15.000000000 +0200 +++ memtest86+/Makefile 2006-01-02 18:39:56.000000000 +0100 @@ -12,7 +12,7 @@ # # gcc compiler options, these settings should suffice # -CCFLAGS=-Wall -m32 -march=i486 -Os -fomit-frame-pointer -fno-builtin -ffreestanding +CCFLAGS=-Wall -march=i486 -Os -fomit-frame-pointer -fno-builtin -ffreestanding AS=as -32 @@ -21,7 +21,7 @@ all: memtest.bin memtest reloc.o: reloc.c - $(CC) -c -m32 -march=i486 -fPIC -Wall -g -O2 -fno-strict-aliasing reloc.c + $(CC) -c -march=i486 -fPIC -Wall -g -O2 -fno-strict-aliasing reloc.c test.o: test.c test.h defs.h config.h $(CC) -c $(CCFLAGS) test.c @@ -66,7 +66,7 @@ $(CC) -S $(CCFLAGS) -fPIC controller.c head.s: head.S - $(CC) -E -m32 -traditional $< -o $@ + $(CC) -E -traditional $< -o $@ head.o: head.s $(AS) -o $@ $<