mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
16 lines
141 B
C++
16 lines
141 B
C++
|
|
#include "GROM.h"
|
|
|
|
GROM::GROM()
|
|
: ROM("GROM", "grom.bin", 0, 1, GROM_SIZE, GROM_ADDRESS)
|
|
{}
|
|
|
|
void GROM::reset()
|
|
{
|
|
visible = TRUE;
|
|
}
|
|
|
|
|
|
|
|
|