mirror of
https://github.com/aotta/PicoPAC
synced 2024-11-15 05:05:01 -05:00
29 lines
640 B
C
29 lines
640 B
C
|
/*
|
||
|
// PicoPAC MultiCART by Andrea Ottaviani 2024
|
||
|
//
|
||
|
// VIDEOPAC multicart based on Raspberry Pico board -
|
||
|
//
|
||
|
// More info on https://github.com/aotta/
|
||
|
//
|
||
|
// parts of code are directly from the A8PicoCart project by Robin Edwards 2023
|
||
|
//
|
||
|
// Needs to be a release NOT debug build for the cartridge emulation to work
|
||
|
//
|
||
|
// Edit myboard.h depending on the type of flash memory on the pico clone//
|
||
|
//
|
||
|
// v. 1.0 2024-08-05 : Initial version for Pi Pico
|
||
|
//
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
#ifndef __picopac_CART_H__
|
||
|
#define __picopac_CART_H__
|
||
|
|
||
|
#define FLAG_MASK 0x0FC00000L
|
||
|
#define PSEN_PIN 22
|
||
|
|
||
|
|
||
|
void picopac_cart_main();
|
||
|
|
||
|
#endif
|