GP32 chatboard driver fifo based


zenocha

Member
could somebody please compile the fifo based chatboard driver off spivs site as nobody seems to be able to compile it :/
 
could somebody please compile the fifo based chatboard driver off spivs site as nobody seems to be able to compile it :/
Sorry for leaving in such a hurry last night.. Got taken away for a while, which then got extended by a power cut and now my system is somehow messed up (won't go online anymore).. :blink: I'll check that fifo stuff as soon as it is possible for me...
 
Last edited by a moderator:
its not actually for me, its for whitefalcon, my chatboard works fine, but whitefalcon only has limited time online so i said id try and sort something out for him. also sorry that it compiled straight away, i personaly dont have the resources to do it, and i asked on the dev chat and somebody tried but couldnt compile it ;)
 
It compiles here without any problems using devkitadv under Linux. Here's the Makefile I'm using:

Code:
export CCBASE=/home/cnowak/gp32/devkitadv
include $(CCBASE)/gp32.mk

all: kbtest.gxb

kbtest.gxb: kbtest.elf

kbtest.elf: kbdrv.o main.o
        $(LINK)

clean:
        rm -f kbtest.gxb kbtest.elf main.o kbdrv.o
 
Back
Top