This file contains hidden or 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
version: "3" | |
services: | |
allegro: | |
image: docker.io/amarillion/alleg4-buildenv | |
volumes: | |
- ./static:/data | |
# allegro tools in version 4 fail for no reason even on DOS. |
This file contains hidden or 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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <dirent.h> | |
#include <sys/stat.h> | |
#include <unistd.h> | |
// Code based on mills32 Little-Game-Engine-for-VGA-EGA | |
struct dirent *direntry; |
This file contains hidden or 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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define MAX_FILENAME_LEN 16 | |
// Estructura para almacenar la cabecera de cada archivo (nombre y tamaño) | |
typedef struct { | |
char filename[MAX_FILENAME_LEN]; | |
long long filesize; |
This file contains hidden or 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
################################################################################ | |
## __ __ _ ___ _____ _ __ _ _ _ ## | |
## | \/ (_) __|_ _|__ _ _| |/ / _| \| | (_)___ ## | |
## | |\/| | \__ \ | |/ -_) '_| ' < || | .` |_| / _ \ ## | |
## |_| |_|_|___/ |_|\___|_| |_|\_\_,_|_|\_(_)_\___/ MiSTerKuN.io ## | |
################################################################################ | |
## Project : MiSTer FPGA | |
## Module : Native ARMv7 C/C++ Toolchain for MiSTer HPS | |
## Purpose : Provide easy toolchain to build applications, kernel, etc. | |
## Author : Marcus Andrade <Boogermann> |
OlderNewer