Go to the documentation of this file.
7 #include "../stack/stack.h"
89 char name[18] =
"SoftwareProcessor";
110 #endif //CPU_H_INCLUDED
@ HLT
Definition: cpu.h:37
const int RAM_SIZE
Number of RAM cells.
Definition: cpu.h:15
descriptional_argument
< Special machine code argument that provides additional information about types of instruction opera...
Definition: cpu.h:51
@ INT
Definition: cpu.h:55
void mul_cpu(CPU *some_cpu)
Executes MUL instruction on the CPU.
Definition: cpu.cpp:167
void sub_cpu(CPU *some_cpu)
Executes SUB instruction on the CPU.
Definition: cpu.cpp:157
@ RGDX
Definition: cpu.h:60
void cpucode_file_input(CpuCode *some_cpucode, const char *filename)
Reads machine code from file given and checks its version compatibility.
Definition: cpu.cpp:5
cpu_operand_t reg[4]
Definition: cpu.h:80
void add_cpu(CPU *some_cpu)
Executes ADD instruction on the CPU.
Definition: cpu.cpp:147
@ POP
Definition: cpu.h:40
void out_cpu(CPU *some_cpu)
Executes OUT instruction on the CPU.
Definition: cpu.cpp:187
void execute_cpucode(CPU *some_cpu, CpuCode *some_cpucode)
Executes machine code sequence on the CPU.
Definition: cpu.cpp:39
void hlt_cpu(CPU *some_cpu)
Executes HLT instruction on the CPU.
Definition: cpu.cpp:196
@ ADD
Definition: cpu.h:41
int cpu_operand_t
Definition: cpu.h:9
void div_cpu(CPU *some_cpu)
Executes DIV instruction on the CPU.
Definition: cpu.cpp:177
@ RGBX
Definition: cpu.h:58
void pop_cpu(CPU *some_cpu, descriptional_argument descr_arg)
Executes POP instruction with the arguments given on the CPU.
Definition: cpu.cpp:139
@ SUB
Definition: cpu.h:42
@ RGAX
Definition: cpu.h:57
@ RAMB
Definition: cpu.h:63
void execute_cpu(CPU *some_cpu, instruction_type instruction, descriptional_argument descr_arg, cpu_operand_t operand)
Executes instruction with arguments and operands given on the CPU.
Definition: cpu.cpp:83
@ NONE
Definition: cpu.h:46
void push_cpu(CPU *some_cpu, descriptional_argument descr_arg, cpu_operand_t value)
Executes PUSH instruction with the arguments and operands given on the CPU.
Definition: cpu.cpp:112
void div_cpu(CPU *some_cpu)
Executes DIV instruction on the CPU.
Definition: cpu.cpp:177
< Describes machine code that can be loaded from file and executed
Definition: cpu.h:70
@ NARG
Definition: cpu.h:54
int N_entities
TODO изменить на int.
Definition: cpu.h:73
void free_cpucode(CpuCode *some_cpucode)
Frees memory allocated by the cpucode array.
Definition: cpu.cpp:76
@ DIV
Definition: cpu.h:44
const int RAM_ACCESS_TIME
Ram access delay (adds realism to the model)
Definition: cpu.h:16
void push_cpu(CPU *some_cpu, descriptional_argument descr_arg, cpu_operand_t value)
Executes PUSH instruction with the arguments and operands given on the CPU.
Definition: cpu.cpp:112
instruction_type
TODO включить общим файлом или сделать что-то подобное
Definition: cpu.h:34
void out_cpu(CPU *some_cpu)
Executes OUT instruction on the CPU.
Definition: cpu.cpp:187
Stack data_stack
Definition: cpu.h:79
void mul_cpu(CPU *some_cpu)
Executes MUL instruction on the CPU.
Definition: cpu.cpp:167
void execute_cpucode(CPU *some_cpu, CpuCode *some_cpucode)
Executes machine code sequence on the CPU.
Definition: cpu.cpp:39
void cpucode_file_input(CpuCode *some_cpucode, const char *filename)
Reads machine code from file given and checks its version compatibility.
Definition: cpu.cpp:5
@ RAM
Definition: cpu.h:61
@ MUL
Definition: cpu.h:43
void execute_cpu(CPU *some_cpu, instruction_type instruction, descriptional_argument descr_arg=NARG, cpu_operand_t operand={})
Executes instruction with arguments and operands given on the CPU.
Definition: cpu.cpp:83
const int CPU_VERSION
This parameter is compared to the same parameter from binary header red from machine code file.
Definition: cpu.h:13
@ RAMC
Definition: cpu.h:64
@ PUSH
Definition: cpu.h:39
@ OUT
Definition: cpu.h:45
void add_cpu(CPU *some_cpu)
Executes ADD instruction on the CPU.
Definition: cpu.cpp:147
< Describes CPU with its stack, registers and RAM
Definition: cpu.h:77
void sub_cpu(CPU *some_cpu)
Executes SUB instruction on the CPU.
Definition: cpu.cpp:157
void start_cpu(CPU *some_cpu)
Executes STRT instruction on the CPU.
Definition: cpu.cpp:103
const int instruction_length[]
Number of instruction arguments in machine code + instruction code (N + 1 > 0)
Definition: cpu.h:18
void pop_cpu(CPU *some_cpu, descriptional_argument descr_arg)
Executes POP instruction with the arguments given on the CPU.
Definition: cpu.cpp:139
int N_instructions
Definition: cpu.h:74
cpu_operand_t * ram_ptr
Definition: cpu.h:81
void hlt_cpu(CPU *some_cpu)
Executes HLT instruction on the CPU.
Definition: cpu.cpp:196
@ RAMA
Definition: cpu.h:62
void free_cpucode(CpuCode *some_cpucode)
Frees memory allocated by the cpucode array.
Definition: cpu.cpp:76
@ RAMD
Definition: cpu.h:65
@ REAL
Definition: cpu.h:56
void start_cpu(CPU *some_cpu)
Executes STRT instruction on the CPU.
Definition: cpu.cpp:103
@ RGCX
Definition: cpu.h:59
cpu_operand_t * machine_code
Definition: cpu.h:72
@ STRT
Definition: cpu.h:38