blob: 3b826c87fa20e185d374643fc438bb968f4d586a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
/***********************************************************************************************************
MSX (logical) internal slot interfacing
The MSX standard uses logically defined slots, subslots, and pages to access rom and optional components
in a system. There are no physical slots inside the system. A piece of rom/component can occur in multiple
pages; and multiple pieces of rom/ram/components can occur in a single slot.
***********************************************************************************************************/
#include "emu.h"
#include "slot.h"
msx_internal_slot_interface::msx_internal_slot_interface()
: m_start_address(0)
, m_size(0)
, m_end_address(0)
{
}
|