aboutsummaryrefslogtreecommitdiff
path: root/assembler/Makefile
blob: 0225069ab25fc0d342554b258ed4d0f1f0155e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
PICO = /dev/disk/by-label/RPI-RP2

assemble.uf2: assemble.elf
	../elf/elf2uf2 assemble.elf assemble.uf2

objects = main.o uart.o assemble.o register.o octal.o opcode.o

assemble.elf: $(objects)
	arm-none-eabi-ld -T pico_ram_only.ld -o assemble.elf $(objects) ../setup/setup.so

$(objects): %.o: %.s
	arm-none-eabi-as -o $@ $<

.PHONY: clean
clean:
	rm assemble.elf assemble.uf2 *.o

.PHONY: flash
flash: $(PICO) assemble.uf2
	cat assemble.uf2 > $(PICO)

.PHONY: check
check: $(PICO)
	@echo Ready to flash

$(PICO):
	@echo "RPI-RP2 bootloader drive not found"
	@echo Connect the pico with USB cable while holding bootsel button
	@false