EMULATOR_PDP_11
STEPIC Учебный проект на 'С', эмулятор PDP_11 в стиле ООП
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1#ifndef TYPES_H
2# define TYPES_H
3# include <stdio.h>
4
5enum { size_buffer_default = 0xFFFF };
6typedef unsigned char byte_t;
7typedef unsigned short int word_t;
8
9typedef int bool_t;
10typedef FILE file_t;
11typedef unsigned int address_word_t;
12typedef unsigned int address_byte_t;
13
14typedef unsigned int size_byte_buffer;
15typedef unsigned int size_word_buffer;
16
17#endif
18#pragma once
unsigned int size_byte_buffer
Definition types.h:14
unsigned int size_word_buffer
Definition types.h:15
unsigned int address_byte_t
Definition types.h:12
unsigned char byte_t
Definition types.h:6
unsigned short int word_t
Definition types.h:7
int bool_t
Definition types.h:9
unsigned int address_word_t
Definition types.h:11
FILE file_t
Definition types.h:10
@ size_buffer_default
Definition types.h:5