EMULATOR_PDP_11
STEPIC Учебный проект на 'С', эмулятор PDP_11 в стиле ООП
Loading...
Searching...
No Matches
mem_p.h
Go to the documentation of this file.
1#ifndef MEM_P_H
2# define MEM_P_H
3# include "buf_byte/mem_byte_p.h"
4# include "buf_word/mem_word_p.h"
5# include "types/types.h"
6
7typedef struct {
10 byte_t default_memory; // 1 = mem_byte, 0 = mem_word;
11} mem_t;
12
13#endif
14#pragma once
Definition mem_byte_p.h:7
Definition mem_p.h:7
byte_t default_memory
Definition mem_p.h:10
mem_byte_t * mem_byte
Definition mem_p.h:8
mem_word_t * mem_word
Definition mem_p.h:9
Definition mem_word_p.h:7
unsigned char byte_t
Definition types.h:6