Compare commits

..

2 Commits

Author SHA1 Message Date
bcdc6431ee Fixed typo in Makefile 2020-09-21 02:57:24 +02:00
a41b3a01b5 Updated vimlocal 2020-09-20 20:29:30 +02:00
3 changed files with 6 additions and 7 deletions

View File

@ -1,2 +1,2 @@
set makeprg=./build.sh
map <silent> <F10> :Start python.exe rootfs$(pwd)/upload.py rootfs$(pwd)/.build/fib.bin<cr>
map <silent> <F9> :Make<cr>
map <silent> <F10> :Start upload --rom .build/fib.bin<cr>

View File

@ -10,7 +10,6 @@ $(BUILDDIR):
all: $(BUILDDIR) $(BIN)
.PHONE: clean
.PHONY: clean
clean:
@rm -df $(BUILDDIR)/*.bin $(BUILDDIR)/*.lst .build

View File

@ -1,8 +1,8 @@
_ram_start equ 0x1300
_ram_start equ 0x1000
#target rom
#code _HOME, 0x1200 ; Non-banked part of memory
#code _HOME, 0x0000 ; Non-banked part of memory
#data _DATA, _ram_start ; Uninitialized variables
@ -34,7 +34,7 @@ loop:
jp nz, loop
done:
jp 0x0000
halt
amount:
.db 10