EMULATOR_PDP_11
STEPIC Учебный проект на 'С', эмулятор PDP_11 в стиле ООП
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1#ifndef UTILS_H
2# define UTILS_H
3# include "types/types.h"
4
5int __is_valid_address(const address_byte_t); //проверка адресса
6void usage(const byte_t *progname); // сообщение об неоходимости использывать
7 // перфикс [-t];
9 __get_size_buffer(); //получение дефолтного значения буфера при инициализации;
10file_t *pdp_file_open(const byte_t *, const byte_t *);
11void pdp_file_close(const file_t *);
12void usage(const byte_t *progname);
13#endif
14#pragma once
unsigned int address_byte_t
Definition types.h:12
unsigned char byte_t
Definition types.h:6
FILE file_t
Definition types.h:10
address_byte_t __get_size_buffer()
Definition size_buffer.c:6
void usage(const byte_t *progname)
Definition utils.c:24
void pdp_file_close(const file_t *)
Definition utils.c:44
int __is_valid_address(const address_byte_t)
Definition utils.c:13
file_t * pdp_file_open(const byte_t *, const byte_t *)
Definition utils.c:31