fix build
This commit is contained in:
parent
21875865c4
commit
e04e63907b
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
LDFLAGS = $(shell pkg-config --libs sdl2 r_util r_io)
|
||||
CFLAGS = -Wall -I include/ $(shell pkg-config --cflags sdl2 r_util r_io)
|
||||
CFLAGS = -Wall -I include/ $(shell pkg-config --cflags sdl2 r_util r_io r_arch r_esil)
|
||||
|
||||
all: sdl/pixbuf.o io/timers.o io/mbc1.o io/mbc2.o io/joypad.o io/dma.o
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef GB_H
|
||||
#define GB_H
|
||||
#include <ragb_sdl.h>
|
||||
#include <r_io.h>
|
||||
#include <r_arch.h>
|
||||
#include <r_esil.h>
|
||||
|
||||
enum {
|
||||
GB_TIMERS_DIV = 0,
|
||||
|
@ -110,7 +113,7 @@ typedef struct gameboy_t {
|
|||
|
||||
} GB;
|
||||
|
||||
GBPPU *gb_ppu_open (RIO *io)
|
||||
GBPPU *gb_ppu_open (RIO *io);
|
||||
void gb_ppu_update (GB *gb, ut32 cycles);
|
||||
void gb_ppu_close (GBPPU *ppu);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user