mirror of
https://github.com/holub/mame
synced 2025-05-25 15:25:33 +03:00
Minor comment cleanup.
This commit is contained in:
parent
5eb822fc78
commit
bd11e46b0c
@ -197,14 +197,15 @@ struct _memory_block
|
|||||||
UINT8 * data; /* pointer to the data for this block */
|
UINT8 * data; /* pointer to the data for this block */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* a bank is a global pointer to memory that can be shared across devices and changed dynamically */
|
/* a bank reference is an entry in a list of address spaces that reference a given bank */
|
||||||
typedef struct _bank_reference bank_reference;
|
typedef struct _bank_reference bank_reference;
|
||||||
struct _bank_reference
|
struct _bank_reference
|
||||||
{
|
{
|
||||||
bank_reference * next;
|
bank_reference * next; /* link to the next reference */
|
||||||
const address_space * space;
|
const address_space * space; /* address space that references us */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* a bank is a global pointer to memory that can be shared across devices and changed dynamically */
|
||||||
typedef struct _bank_data bank_info;
|
typedef struct _bank_data bank_info;
|
||||||
struct _bank_data
|
struct _bank_data
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user