Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,430 changes: 1,430 additions & 0 deletions presets/gb/chase.c

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion presets/gb/gb/bcd.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef __BCD_H_INCLUDE
#define __BCD_H_INCLUDE

#include <types.h>
#include "types.h"
#include <stdint.h>

/** @file bcd.h
Expand Down
2 changes: 1 addition & 1 deletion presets/gb/gb/cgb.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef _CGB_H
#define _CGB_H

#include <types.h>
#include "types.h"
#include <stdint.h>

/** Macro to create a CGB palette color entry out of 5-bit color components.
Expand Down
4 changes: 2 additions & 2 deletions presets/gb/gb/drawing.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#ifndef __DRAWING_H
#define __DRAWING_H

#include <types.h>
#include "types.h"
#include <stdint.h>

/** Size of the screen in pixels */
Expand All @@ -56,7 +56,7 @@
#define SIGNED 1
#define UNSIGNED 0

#include <types.h>
#include "types.h"

/** Print the string 'str' with no interpretation
@see gotogxy()
Expand Down
2 changes: 1 addition & 1 deletion presets/gb/gb/emu_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#ifndef __EMU_DEBUG_INCLUDE
#define __EMU_DEBUG_INCLUDE

#include <types.h>
#include "types.h"

/** Macro to display a message in the emulator debug message window

Expand Down
2 changes: 1 addition & 1 deletion presets/gb/gb/gbdecompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef __GBDECOMPRESS_H_INCLUDE
#define __GBDECOMPRESS_H_INCLUDE

#include <types.h>
#include "types.h"
#include <stdint.h>

/** gb-decompress data from sour into dest
Expand Down
2 changes: 1 addition & 1 deletion presets/gb/gb/isr.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define _ISR_H_INCLUDE_

#include <stdint.h>
#include <types.h>
#include "types.h"

// #define VECTOR_VBL 0x40 // you can not define raw vector for VBlank interrupt
#define VECTOR_STAT 0x48 /**< Address for the STAT interrupt vector */
Expand Down
2 changes: 1 addition & 1 deletion presets/gb/gb/metasprites.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
#define _METASPRITES_H_INCLUDE

#include <gb/hardware.h>
#include <types.h>
#include "types.h"
#include <stdint.h>

/** Metasprite sub-item structure
Expand Down
2 changes: 1 addition & 1 deletion presets/gb/gb/sgb.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef _SGB_H
#define _SGB_H

#include <types.h>
#include "types.h"
#include <stdint.h>

#define SGB_PAL_01 0x00U /**< SGB Command: Set SGB Palettes 0 & 1 */
Expand Down
2 changes: 1 addition & 1 deletion presets/gb/hello.sgb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

.include "gingerbread.sgb"
.include "gb/gingerbread.sgb"

; Set the size of the ROM file here. 0 means 32 kB, 1 means 64 kB, 2 means 128 kB and so on.
ROM_SIZE = 1
Expand Down
Loading