summaryrefslogtreecommitdiff
path: root/main.lisp
blob: 4ec4440d37a04bc00cce154cbf0f1f71019dc392 (plain)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
;; -*- mode: common-lisp -*-
#|
clasm-6502: An assembler for the 6502 written in Common Lisp.
Copyright (C) 2024  Aleksei Eaves

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
|#


(defun interpret-character (s x)
  "Interpret meanings of characters."
  (cond
	((>= x (length s))
	 'end-of-line)
	(t
	 ;; Have character, interpret
	 (let ((c (char s x)))
	   (cond
		 ((eq c #\;) ; Comment
		  'comment)
		 ((eq c #\ ) ; Space
		  'whitespace)
		 (t
		  'normal))))))

(defun extract-word (line-string index)
  "Extract a single word from line-string, starting at index."
  (cond
	((member (interpret-character line-string index)
			 `(end-of-line comment))
	 'end-of-line)
	((equal (interpret-character line-string index)
			'whitespace)
	 'whitespace)
	(t
	 (subseq
	  line-string
	  index
	  (do ((end index (incf end)))
		  ((not (equal 'normal
					   (interpret-character line-string end)))
		   end))))))

(defun extract-words (line-string &optional (index 0))
  "Return a list the constituent word strings of line-string."
  ;; Word Processing Logic
  (let ((word (extract-word line-string index)))
	(cond
	  ;; Terminate execution at end-of-line.
	  ((equal word 'end-of-line)
	   nil)
	  ;; If empty, continue on.
	  ((equal word 'whitespace)
	   (extract-words line-string (+ index 1)))
	  ;; Otherwise, extract word and move ahead.
	  (t
	   (cons word
			 (extract-words line-string
							(+ index
							   (length word))))))))


;; Working read-program
(defun read-program (source-filename)
  (let ((line (read-line source-filename nil 'EOF)))
	(if (equal line 'EOF)
		nil
		(let ((line-list (extract-words line)))
		  (if (equal line-list nil)
			  (progn
				(incf *source-line-number*)
				(read-program))
			  (cons
			   (list (incf *source-line-number*)
					 (extract-words line))
			   (read-program)))))))



;; Self contained version
(defun program (source-filename)
  "Turns an assembly source file into a list, prepended with line numbers."
  (let ((source-file (open source-filename))
		(source-line-number 0))
	(labels
		((recurse ()
		   (let ((line (read-line source-file nil 'EOF)))
			 (if (equal line 'EOF)
				 nil
				 (let ((line-list (extract-words line)))
				   (if (equal line-list nil)
					   (progn
						 (incf source-line-number)
						 (recurse))
					   (cons
						(list (incf source-line-number)
							  (extract-words line))
						(recurse))))))))
	  (recurse))))



(defun last-char (s)
  (char s (- (length s) 1)))

(defun label? (s)
  (eq (last-char s) #\:))


(setf
 *grammar*
 (('label
   (lambda (l)
	 ))))

(defun read_code ()
  (incf *source-line-number*)
  ()
  )