mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
26 lines
748 B
C++
26 lines
748 B
C++
// =====================================================================================
|
|
// Copyright (c) 2021-2023 Dave Bernazzani (wavemotion-dave)
|
|
//
|
|
// Copying and distribution of this emulator, its source code and associated
|
|
// readme files, with or without modification, are permitted in any medium without
|
|
// royalty provided the this copyright notice is used and wavemotion-dave (NINTV-DS)
|
|
// and Kyle Davis (BLISS) are thanked profusely.
|
|
//
|
|
// The NINTV-DS emulator is offered as-is, without any warranty.
|
|
// =====================================================================================
|
|
|
|
#include "GROM.h"
|
|
|
|
GROM::GROM()
|
|
: ROM("GROM", "grom.bin", 0, 1, GROM_SIZE, GROM_ADDRESS)
|
|
{}
|
|
|
|
void GROM::reset()
|
|
{
|
|
visible = TRUE;
|
|
}
|
|
|
|
|
|
|
|
|