Skip to content
Open
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
46 changes: 0 additions & 46 deletions Interrupt/Makefile

This file was deleted.

52 changes: 0 additions & 52 deletions Interrupt/boot.ld

This file was deleted.

171 changes: 0 additions & 171 deletions Interrupt/boot.s

This file was deleted.

14 changes: 0 additions & 14 deletions Interrupt/isr.c

This file was deleted.

76 changes: 0 additions & 76 deletions Interrupt/main.cpp

This file was deleted.

8 changes: 0 additions & 8 deletions Interrupt/timer.h

This file was deleted.

1 change: 1 addition & 0 deletions Simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ all: main.elf

main.elf: $(OBJS) $(LNK_SCRIPT) Makefile
$(CC) $(LNK_FILE_OPT) -o $@ $(OBJS) $(LNK_OPT)
cp *.elf ~/gem5_workspace

boot.o: Makefile
$(CPP) boot.s $(CFLAGS) | $(AS) $(ASFLAGS) -o boot.o
Expand Down
2 changes: 1 addition & 1 deletion Simple/boot.ld
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ SECTIONS
.data : { *(.data) }
.bss : { *(.bss COMMON) }
. = ALIGN(8);
. = . + 0x1000; /* 4kB of stack memory */
. = . + 0x4000; /* 16kB of stack memory for multiple cores (4 cores * 4KB each) */
stack_top = .;
PROVIDE (end = .) ;
}
Loading