Skip to content

Commit 9d6a66e

Browse files
committed
Use lib kernel with patch to autodetect if we can use the 64 MB ram of DESR machines
1 parent efaf7d2 commit 9d6a66e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

ee/Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ endif
1717
APP_VERSION := $(shell git describe --tags --abbrev=0)
1818
EE_CFLAGS += -DAPP_VERSION=\"$(APP_VERSION)\"
1919

20-
# Link with following libraries. This is a special case, and instead of
21-
# allowing the user to override the library order, we always make sure
22-
# libkernel is the last library to be linked.
23-
EE_LIBS += -lc -lkernel-nopatch
24-
2520
# Use custom linkfile
2621
EE_LINKFILE = linkfile
2722

ee/ps2link.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ int main(int argc, char *argv[])
275275

276276
dbgscr_printf("init cmdrpc\n");
277277
initCmdRpc();
278-
scr_printf("Ready\n");
278+
scr_printf("Ready with %i memory bytes\n", GetMemorySize());
279279

280280
ExitDeleteThread();
281281
return 0;

0 commit comments

Comments
 (0)