Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions ee/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ endif
APP_VERSION := $(shell git describe --tags --abbrev=0)
EE_CFLAGS += -DAPP_VERSION=\"$(APP_VERSION)\"

# Link with following libraries. This is a special case, and instead of
# allowing the user to override the library order, we always make sure
# libkernel is the last library to be linked.
EE_LIBS += -lc -lkernel-nopatch

# Use custom linkfile
EE_LINKFILE = linkfile

Expand Down
2 changes: 1 addition & 1 deletion ee/ps2link.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ int main(int argc, char *argv[])

dbgscr_printf("init cmdrpc\n");
initCmdRpc();
scr_printf("Ready\n");
scr_printf("Ready with %i memory bytes\n", GetMemorySize());

ExitDeleteThread();
return 0;
Expand Down