Compare commits

..

No commits in common. "bcdc6431eefdd3b4d588f7cdfae226e0779a3b80" and "21024c642b21c9516a15074da284d0e2b05677a1" have entirely different histories.

3 changed files with 7 additions and 6 deletions

View File

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

View File

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

View File

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