add ports_exit()
This commit is contained in:
parent
42abcaba54
commit
a1c6fed619
2 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue