Skip to content

Commit 7ddf5c1

Browse files
authored
Merge pull request #67 from juntuu/folders
More folders
2 parents b10205e + 3eb36ea commit 7ddf5c1

File tree

44 files changed

+41
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+41
-74
lines changed

jsrc/CMakeLists.txt

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -77,56 +77,55 @@ target_sources(j PRIVATE
7777
verbs/vx.c
7878
verbs/vz.c
7979
cpuinfo.c
80-
d.c
81-
dc.c
82-
dss.c
83-
dstop.c
84-
dsusp.c
80+
debugging/d.c
81+
debugging/dc.c
82+
debugging/dss.c
83+
debugging/dstop.c
84+
debugging/dsusp.c
8585
dtoa.c
86-
f.c
87-
f2.c
88-
fbu.c
86+
format/f.c
87+
format/f2.c
88+
format/fbu.c
8989
gemm.c
9090
i.c
9191
io.c
9292
j.c
9393
jdlllic.c
9494
k.c
9595
m.c
96-
p.c
97-
pv.c
96+
parsing/p.c
97+
parsing/pv.c
9898
px.c
99-
r.c
100-
rl.c
101-
rt.c
99+
representations/r.c
100+
representations/rl.c
101+
representations/rt.c
102102
s.c
103103
sc.c
104104
sl.c
105105
sn.c
106106
t.c
107107
u.c
108108
vu.c
109-
w.c
110-
wc.c
111-
wn.c
112-
ws.c
113-
x.c
114-
x15.c
115-
xa.c
116-
xb.c
117-
xc.c
118-
xcrc.c
119-
xd.c
120-
xf.c
121-
xfmt.c
122-
xh.c
123-
xi.c
124-
xl.c
125-
xo.c
126-
xs.c
127-
xsha.c
128-
xt.c
129-
xu.c
109+
words/w.c
110+
words/wc.c
111+
words/wn.c
112+
words/ws.c
113+
xenos/x.c
114+
xenos/x15.c
115+
xenos/xa.c
116+
xenos/xb.c
117+
xenos/xc.c
118+
xenos/xcrc.c
119+
xenos/xd.c
120+
xenos/xf.c
121+
xenos/xfmt.c
122+
xenos/xh.c
123+
xenos/xi.c
124+
xenos/xl.c
125+
xenos/xo.c
126+
xenos/xs.c
127+
xenos/xt.c
128+
xenos/xu.c
130129
)
131130

132131
# configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/ COPYONLY)

jsrc/conjunctions/cx.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
/* 3 vector of triples of control information */
1414

1515
#include "j.h"
16-
#include "d.h"
17-
#include "p.h"
18-
#include "w.h"
16+
#include "debugging/d.h"
17+
#include "parsing/p.h"
18+
#include "words/w.h"
1919

2020
// DD definitions
2121
#define DDBGN (US)('{'+256*'{') // digraph for start DD
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

jsrc/dsusp.c renamed to jsrc/debugging/dsusp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "j.h"
77
#include "d.h"
8-
#include "w.h"
8+
#include "words/w.h"
99

1010
// When we move off of a parser frame, or when we go into debug with a new parser frame, fill the frame with
1111
// the info for the parse that was interrupted
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)