blob: 6b16ba3e98723e8ec011af5ebc2e4c9c85c3a02c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/**
* @module ccpu
* @author Guenther Neuwirth (0626638), Manuel Mausz (0728348)
* @brief class for parsing simple scriptfiles
* @date 17.04.2009
*/
#ifndef CCPU_H
#define CCPU_H
#include <stdexcept>
#include <string>
#include <vector>
#include "cprogram.h"
#include "cmem.h"
#include "cinstruction.h"
/**
* @class CCPU
*
* Parses a simple line based scriptfile with some limitations:
* first function (starting a block) must be a read-command,
* last must be a write-command (ending this block).
*
* read- and write-commands have hard coded parameters, number#1 being a filetype.
* Classes handling certain filetypes must be of type CFile.
* Custom functions will be passed to CFile::callFunc().
*
* On error ParserError will be thrown.
*/
class CCPU
{
public:
/**
* @method CScriptparser
* @brief Default ctor
* @param scriptfile filename of script to parse
* @return -
* @globalvars none
* @exception bad_alloc
* @conditions none
*/
CCPU(const std::string& progfile, const std::string& memfile);
/**
* @method ~CScriptparser
* @brief Default dtor
* @param -
* @return -
* @globalvars none
* @exception none
* @conditions none
*/
~CCPU()
{}
void proceed();
void execInstruction( CInstruction& instr, std::vector<std::string>& i_list);
private:
/* members */
CProgram m_program;
CMem m_memory;
std::map<std::string, CInstruction *> m_instrtype;
bool f_zero, f_sign;
// std::string m_memfiler;
};
#endif
/* vim: set et sw=2 ts=2: */
|