Skip to content

Commit

Permalink
pijFORTHos: move all the rpi stuff into rpi/
Browse files Browse the repository at this point in the history
I really just want this to be a bunch of useful
stuff built around a generic jonesforth.s.

Signed-off-by: Andrei Warkentin <[email protected]>
  • Loading branch information
andreiw committed Nov 5, 2015
1 parent 70675a2 commit f2f363b
Show file tree
Hide file tree
Showing 20 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Andrei Warkentin <[email protected]>

Bare-metal Raspberry Pi port by:

Dale Schumacher <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions doc/forth.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ so you can see related words together.
| `;CODE` | ( -- ) | start the native code part of a CREATEd defining word |
| `(END-CODE)` | ( -- ) | end FORTH native code word definition |
| `END-CODE` | ( -- ) | append $NEXT and end FORTH native code word definition |
| `DOES>` | ( -- ) | start the FORTH part of a CREATEd defining word |
| `$NEXT` | ( -- ) | emit native code to run the next word |
| `IMMEDIATE` | ( -- ) | set IMMEDIATE flag of last defined word |
| `HIDDEN` | ( entry -- ) | toggle HIDDEN flag of a word |
Expand Down
Binary file removed kernel.img
Binary file not shown.
7 changes: 2 additions & 5 deletions Makefile → rpi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@ all: kernel.img
start.o: start.s
$(AS) start.s -o start.o

jonesforth.o: jonesforth.s
$(AS) jonesforth.s -o jonesforth.o

#raspberry.o: raspberry.c
# $(CC) -c raspberry.c -o raspberry.o
jonesforth.o: ../jonesforth.s
$(AS) -o $@ $<

kernel.img: loadmap $(KOBJS)
$(LD) $(KOBJS) -T loadmap -o pijFORTHos.elf
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f2f363b

Please sign in to comment.