-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDart.h
113 lines (97 loc) · 2.56 KB
/
Dart.h
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//
// Dart.h
// DART4iOS
//
// Created by Will Stafford on 5/28/14.
// Copyright (c) 2014 iWill LLC. All rights reserved.
//
typedef unsigned char byte;
typedef long long address;
typedef int unit;
#define DART_VERSION 1
#define MAX_COMMANDS 512
#ifndef DART4iOS_Dart_h
#define DART4iOS_Dart_h
typedef struct {
char *name;
unit size;
unit idcode;
unit address;
} map_symbol;
#include <string.h>
#include <stdlib.h>
#include "DartRam.h"
#include "DartCompiler.h"
#include "DartExecutor.h"
#include "DartParser.h"
#include "DartDelegate.h"
typedef enum {
NO_ERROR = 0x0,
EXIT = 0x10,
FATAL_ERROR = 0x100,
CRITICAL_ERROR = 0x1000,
GENERAL_ERROR = 0x10000,
MEMORY_FAULT = 0x100000,
OUT_OF_MEMORY_ERROR = -1,
} command_return_code;
typedef enum {
ARG_NONE = 0x1,
ARG_NUM = 0x2,
ARG_CHAR = 0x4,
ARG_STRING = 0x8,
ARG_REG = 0x10,
ARG_VALUE_AT_ADDRESS = 0x20,
ARG_ADDRESS_OF_REG = 0x40,
ARG_RELATIVE = 0x80,
// Reserve 0xXX00 for future use
// Start maps at 0x010000
} argtype;
#define new_cmd_block(name) command_return_code name(unit args[2], argtype types[2])
#define add_command(y, z) strcpy(commands[cmdCount].name, y); commands[cmdCount].exec = &z; commands[cmdCount].created = 1; cmdCount++
int cmdCount;
new_cmd_block(runCMD);
typedef typeof(runCMD) cmdBlock;
typedef struct {
char name[64];
cmdBlock *exec;
int created;
} dart_command;
int dart_kill_exe;
int dartInitiated;
dart_command commands[512];
map_symbol regsSym; // Reserve 0xFE & 0xFF for strings
map_symbol compareFlagsSym;
void dartKillExecution();
int dartInit();
void load_commands();
off_t dart_fsize(const char *filename);
void convertUnitRangeToBytes(char *output, unit pointer, unit size);
void convertUnitStringToUTF8(char output[512], unit pointer);
unit unitStringLength(unit pointer);
// Delegation Stuff
dart_delegate dartDelegate;
void *dart_Input_Pointer;
int loadedCmds;
int mapsSet;
map_symbol mapped[256];
unit mapIndex;
map_symbol dart_map(char *name, unit size);
unit dart_mapped_index(char *name);
void dart_load_maps();
map_symbol dart_sym(char *name);
unit dart_sym_val(char *name, unit offset);
map_symbol programCounterSym;
map_symbol callStackSym;
map_symbol callStackIndexSym;
unit *callstackIndex;
unit *callstack;
unit *programCounter;
unit *regs;
unit *compareFlags;
#define dart_BL_size 92
unit *dart_bootloader;
#define setSymbol(symbol, value) ram[symbol.address] = value
#define setSymbolWithOffset(symbol, offset, value) ram[symbol.address+offset] = value
#define getSymbol(symbol) ram[symbol.address]
#define getSymbolWithOffset(symbol, offset) ram[symbol.address+offset]
#endif