forked from paule32/forth2asm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.forth
44 lines (35 loc) · 1.08 KB
/
test.forth
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
c -----------------------------------------------------------------------------
c routine to supply nearest neighbour data for atoms in
c a crystal structure, given
c
c rc(i,j) the i'th coordinate of the j'th axis of the unit cell
c rk(i,j) the i'th coordinate of the j'th atom in the unit cell
c nrr(ir) the number of type-ir atoms in the unit cell
c
c The information returned, for a type-ir atom, is
c ncon(ir) the number of nearest neighbour shells of a type-ir
c atom included, out to a distance of rmax, but <= mc
c ia(j,ir) the type of atoms in the j'th neighbouring shell
c na(j,ir) the number of atoms in the j'th shell
c ad(j,ir) the radius of the j'th shell initialisation
c -----------------------------------------------------------------------------
* this is a one-liner comment
* again as before
program HelloWorld
end
program Test2
Integer a,b , c,c, cc
a = 42
b = 21
c = a
goto 10
10
goto 20
20
goto 30
30
end
subroutine nbr (ia, na, ad, ncon, nrr, nr, rc, rk, n, rmax, mc)
dimension ia(mc, nr), na()
c, na(mc,nr), nq( )
end