1GXemul's source code contains code from two trees;
2the largest portion is the original emulator code written in plain C,
3and the smaller (newer) portion is written in C++. All files have been
4converted to a .cc (C++) extension, however, and C++ features may be
5used by both the older and newer parts of the code.
6
7
8NEW CODE
9--------
10
11	components
12	main
13	plugins
14	ui
15
16
17SHARED
18------
19
20	include
21
22
23ORIGINAL EMULATOR CODE
24----------------------
25
26	console
27	cpus		(new cpus are in components/cpu/)
28	debugger	(corresponds to main/CommandInterpreter.cc)
29	devices		(corresponds to components/)
30	disk
31	file		(new file loaders are in main/fileloaders/)
32	machines	(new machines are in components/machines/)
33	net
34	old_main
35	promemul
36	symbol
37
38