-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedList.h
33 lines (29 loc) · 1.33 KB
/
linkedList.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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Sogang University *
* Department of Computer Science and Engineering *
* *
* Subject name: System Programming *
* Project title: [3] SIC/XE Machine - Linking Loader *
* *
* Author: Inho Kim *
* Student ID: 20161577 *
* *
* File name: linkedList.h *
* File description: Header file for linked list related tasks. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
LIST histList;
LIST opCodeTable[HASH_SIZE];
LIST extSymTable;
LIST breakPntList;
void addToList(LIST*, void*);
void freeList(LIST*);
void opCodeTableFree();
void extSymTableFree();
void printList(LIST, void (void*));
void printHistory(void*);
void printOpList(void*);
void printCntSecTable(void*);
void printExtSym(void*);
void printBreakPntList(void*);