This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct GlFormat | |
{ | |
GLint sized_format; // eg, RGBA8 | |
GLenum format; // eg, RGBA | |
GLenum packing; // eg, GL_UNSIGNED_INT_8_8_8_8_REV or GL_UNSIGNED_SHORT_1_5_5_5_REV | |
}; | |
struct Format | |
{ | |
SDL_PixelFormatEnum sdl; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <cstdint> | |
#include <cstring> | |
#include <vector> | |
template<typename T> | |
struct WavWriter | |
{ | |
void init() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdbool.h> | |
#include <stddef.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <string.h> | |
static FILE* file; | |
static size_t number_of_samples; | |
static uint32_t sample_rate; | |
static uint8_t channels; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "apu.h" | |
uint8_t envelope_get_volume(const struct Nes_ApuEnvelope* envelope) | |
{ | |
return envelope->constant_volume_flag ? envelope->volume : envelope->counter; | |
} | |
void envelope_reload(struct Nes_ApuEnvelope* envelope) | |
{ | |
envelope->start_flag = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <gba_console.h> | |
#include <gba_video.h> | |
#include <gba_interrupt.h> | |
#include <gba_systemcalls.h> | |
#include <gba.h> | |
#include <stdio.h> | |
enum NorS71InfoOffset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "scheduler.hpp" | |
#include <algorithm> | |
namespace scheduler { | |
namespace { | |
// s32 overflows at 0x7FFFFFFF, just over 100 million gap | |
constexpr s32 TIMEOUT_VALUE = 0x70000000; | |
void reset_event(void* user, [[maybe_unused]] s32 _) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef MGBA_LOG_H | |
#define MGBA_LOG_H | |
#include <stdio.h> /* needed for snprintf */ | |
#define MGBA_LOG_ON 0xC0DE | |
#define MGBA_LOG_OFF 0x0000 | |
#define MGBA_LOG_ON_RESULT 0x1DEA | |
#define MGBA_LOG_STDOUT ((char*)0x4FFF600) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.11.0) | |
project(minibug LANGUAGES C CXX) | |
add_executable(minibug main.cpp) | |
include(FetchContent) | |
Set(FETCHCONTENT_QUIET FALSE) | |
FetchContent_Declare(minizip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// goto will be constexpr in c++23 (finally) | |
// for my c version: https://github.com/ITotalJustice/TotalGBA/blob/3172ffea3b3c11d0714c6425c74e89efdc219ae1/src/util/string.c#L6 | |
auto strstr_s(std::string_view haystack, std::string_view needle) -> std::string_view | |
{ | |
for (std::size_t i = 0; i < haystack.size(); i++) | |
{ | |
// if we find the first matching char, start the inner loop | |
if (haystack[i] == needle[0]) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set(LIBDRAGON "/opt/libdragon") | |
set(LIBDRAGON_LIBS "-ldragon -lc -lm -ldragonsys") # order matters | |
SET(CMAKE_SYSTEM_NAME Generic) | |
SET(CMAKE_SYSTEM_VERSION 1) | |
SET(CMAKE_SYSTEM_PROCESSOR mips) | |
SET(CMAKE_C_COMPILER ${LIBDRAGON}/bin/mips64-elf-gcc) | |
SET(CMAKE_CXX_COMPILER ${LIBDRAGON}/bin/mips64-elf-g++) | |
set(CMAKE_LINKER ${LIBDRAGON}/bin/mips64-elf-ld) | |
set(CMAKE_AR ${LIBDRAGON}/bin/mips64-elf-ar) |