Skip to content

Commit

Permalink
Added main placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalladino committed Sep 23, 2024
1 parent 171346a commit 46705da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CC= msp430-elf-gcc -mmcu=rf430frl152h -Wall \
-Wno-unused-but-set-variable \
-I. -I/opt/msp430-gcc/include -Os -Wl,--no-gc-sections -nostartfiles

APPS = tcg_counter.txt timer_register.txt timer_a0_vector.txt
APPS = tcg_counter.txt timer_register.txt timer_a0_vector.txt main.txt

all: $(APPS)

Expand Down
5 changes: 5 additions & 0 deletions main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@


void main() {
while(1) {}
}

0 comments on commit 46705da

Please sign in to comment.