add ports_exit()

This commit is contained in:
Gwenhael Le Moine 2024-04-13 13:41:58 +02:00
parent 42abcaba54
commit a1c6fed619
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 3 additions and 0 deletions

View file

@ -35,6 +35,8 @@ void ports_init( void )
current_bank = 0;
}
void ports_exit( void ) {}
void ports_switch_bank( address adr )
{
bool need_remap = false;

View file

@ -4,6 +4,7 @@
#include "types.h"
extern void ports_init( void );
extern void ports_exit( void );
extern void ports_switch_bank( address adr );
extern byte ports_card_detect( void );