Fixed a bug with literals as first arguments of operators. It now
[sixpic.git] / pic18-sim.scm
blobc381d11c2d52847fe8cb4fe75d18747d33210792
1 ;;; File: "pic18-sim.scm"
3 (include "pic18.scm")
5 ;------------------------------------------------------------------------------
7 (define pic18-ram   #f)
8 (define pic18-rom   #f)
9 (define pic18-stack #f)
10 (define pic18-pc    #f)
11 (define pic18-wreg  #f)
13 (define pic18-carry-flag    #f)
14 (define pic18-deccarry-flag #f)
15 (define pic18-zero-flag     #f)
16 (define pic18-overflow-flag #f)
17 (define pic18-negative-flag #f)
19 (define pic18-cycles #f)
20 (define pic18-exit #f)
22 (define (get-ram adr)
23   (cond ((= adr TOSU)
24          (bitwise-and (arithmetic-shift (get-tos) -16) #xff))
25         ((= adr TOSH)
26          (bitwise-and (arithmetic-shift (get-tos) -8) #xff))
27         ((= adr TOSL)
28          (bitwise-and (get-tos) #xff))
29         ((= adr PCL)
30          (set-ram PCLATU (bitwise-and (arithmetic-shift (get-pc) -16)) #x1f)
31          (set-ram PCLATH (bitwise-and (arithmetic-shift (get-pc) -8)) #xff)
32          (bitwise-and (get-pc) #xfe))
33         ((= adr STATUS)
34          (+ pic18-carry-flag
35             (arithmetic-shift pic18-deccarry-flag 1)
36             (arithmetic-shift pic18-zero-flag 2)
37             (arithmetic-shift pic18-overflow-flag 3)
38             (arithmetic-shift pic18-negative-flag 4)))
39         ((assq adr (list (cons INDF0 (cons FSR0H FSR0L))
40                          (cons INDF1 (cons FSR1H FSR1L))
41                          (cons INDF2 (cons FSR2H FSR2L))))
42          => (lambda (x)
43               (get-ram (bitwise-ior
44                         (arithmetic-shift (u8vector-ref pic18-ram
45                                                         (cadr x))
46                                           8)
47                         (u8vector-ref pic18-ram
48                                       (cddr x))))))
49         ;; TODO pre/post inc/dec 0..2
50         (else
51          (u8vector-ref pic18-ram adr))))
53 (define (set-ram adr byte)
54   (cond ((= adr TOSU)
55          (set-tos (+ (bitwise-and (get-tos) #x00ffff)
56                      (arithmetic-shift (bitwise-and byte #x1f) 16))))
57         ((= adr TOSH)
58          (set-tos (+ (bitwise-and (get-tos) #x1f00ff)
59                      (arithmetic-shift byte 8))))
60         ((= adr TOSL)
61          (set-tos (+ (bitwise-and (get-tos) #x1fff00)
62                      byte)))
63         ((= adr PCL)
64          (set-pc (+ (bitwise-and (arithmetic-shift (get-ram PCLATU) 16) #x1f)
65                     (bitwise-and (arithmetic-shift (get-ram PCLATH) 8) #xff)
66                     (bitwise-and byte #xfe))))
67         ((= adr STATUS)
68          (set! pic18-carry-flag    (bitwise-and byte 1))
69          (set! pic18-deccarry-flag (arithmetic-shift (bitwise-and byte 2) -1))
70          (set! pic18-zero-flag     (arithmetic-shift (bitwise-and byte 4) -2))
71          (set! pic18-overflow-flag (arithmetic-shift (bitwise-and byte 8) -3))
72          (set! pic18-negative-flag (arithmetic-shift (bitwise-and byte 16) -4)))
73         ((assq adr (list (cons INDF0 (cons FSR0H FSR0L))
74                          (cons INDF1 (cons FSR1H FSR1L))
75                          (cons INDF2 (cons FSR2H FSR2L))))
76          => (lambda (x)
77               (set-ram (bitwise-ior ;; TODO factor common code with get-ram ?
78                         (arithmetic-shift (u8vector-ref pic18-ram
79                                                         (cadr x))
80                                           8)
81                         (u8vector-ref pic18-ram
82                                       (cddr x)))
83                        byte)))
84         ;; TODO all other special array registers
85         (else
86          (u8vector-set! pic18-ram adr byte))))
88 (define (get-rom adr)
89   (u8vector-ref pic18-rom adr))
91 (define (set-rom adr byte)
92   (u8vector-set! pic18-rom adr byte))
94 (define (get-stack adr)
95   (vector-ref pic18-stack adr))
97 (define (set-stack adr pc)
98   (vector-set! pic18-stack adr pc))
100 (define (get-pc)
101   pic18-pc)
103 (define (set-pc pc)
104   (set! pic18-pc pc))
106 (define (get-sp)
107   (bitwise-and (get-ram STKPTR) #x1f))
109 (define (set-sp sp)
110   (set-ram STKPTR
111            (bitwise-ior sp
112                         (bitwise-and (get-ram STKPTR) #xe0))))
114 (define (get-tos)
115   (vector-ref pic18-stack (- (get-sp) 1)))
117 (define (set-tos pc)
118   (vector-set! pic18-stack (- (get-sp) 1) pc))
120 (define (stack-push pc)
121   (set-sp (+ (get-sp) 1))
122   (set-tos pc))
124 (define (stack-pop)
125   (set-pc (get-tos))
126   (set-sp (- (get-sp) 1)))
128 (define (get-bsr)
129   (bitwise-and (get-ram BSR) #x0f))
131 (define (get-wreg)
132   pic18-wreg)
134 (define (set-wreg byte)
135   (set! pic18-wreg byte))
137 (define (zero-flag?)
138   (not (= 0 pic18-zero-flag)))
140 (define (set-zero-flag flag)
141   (set! pic18-zero-flag flag))
143 (define (negative-flag?)
144   (not (= 0 pic18-negative-flag)))
146 (define (set-negative-flag flag)
147   (set! pic18-negative-flag flag))
149 (define (carry-flag?)
150   (not (= 0 pic18-carry-flag)))
152 (define (set-carry-flag flag)
153   (set! pic18-carry-flag flag))
155 (define (deccarry-flag?)
156   (not (= 0 pic18-deccarry-flag)))
158 (define (set-deccarry-flag flag)
159   (set! pic18-deccarry-flag flag))
161 (define (overflow-flag?)
162   (not (= 0 pic18-overflow-flag)))
164 (define (set-overflow-flag flag)
165   (set! pic18-overflow-flag flag))
167 (define (pic18-sim-setup)
168   (set! pic18-ram   (make-u8vector #x1000 0))
169   (set! pic18-rom   (make-u8vector #x2000 0))
170   (set! pic18-stack (make-vector #x1f 0))
171   (set-pc 0)
172   (set-wreg 0)
173   (set! pic18-carry-flag    0)
174   (set! pic18-deccarry-flag 0)
175   (set! pic18-zero-flag     0)
176   (set! pic18-overflow-flag 0)
177   (set! pic18-negative-flag 0))
179 (define (pic18-sim-cleanup)
180   (set! pic18-ram   #f)
181   (set! pic18-rom   #f)
182   (set! pic18-stack #f))
184 ;------------------------------------------------------------------------------
186 (define (last-pc)
187   (let ((pc (- (get-pc) 2)))
188     (list (get-sp) " " (- pic18-cycles 1) " "
189           (substring (number->string (+ #x1000000 pc) 16) 1 7)
190           "     ")))
192 (define (illegal-opcode opcode)
193   (if trace-instr
194       (print (list (last-pc) "  *illegal*")))
195   (error "illegal opcode" opcode))
197 (define decode-vector
198   (make-vector 256 illegal-opcode))
200 (define (decode-opcode opcode-bits shift action)
201   (if (< shift 8)
202       (error "shift=" shift))
203   (let ((n (arithmetic-shift 1 (- shift 8)))
204         (base (arithmetic-shift opcode-bits (- shift 8))))
205     (let loop ((i 0))
206       (if (< i n)
207           (begin
208             (vector-set! decode-vector (+ base i) action)
209             (loop (+ i 1)))))))
211 (define (byte-oriented opcode mnemonic flags-changed operation)
212   (byte-oriented-aux opcode mnemonic flags-changed operation 'wreg))
213 (define (byte-oriented-file opcode mnemonic flags-changed operation)
214   (byte-oriented-aux opcode mnemonic flags-changed operation 'file))
215 (define (byte-oriented-wide opcode mnemonic flags-changed operation dest)
216   ;; for use with instructions that have results more than a byte wide, such
217   ;; as multiplication. the result goes at the given addresses
218   (byte-oriented-aux opcode mnemonic flags-changed operation dest)) ;; TODO do the same for literals
220 (define (byte-oriented-aux opcode mnemonic flags-changed operation dest)
221   (let* ((f (bitwise-and opcode #xff))
222          (adr (if (= 0 (bitwise-and opcode #x100))
223                   (if (= 0 (bitwise-and f #x80)) f (+ f #xf00))
224                   (+ f (arithmetic-shift (get-bsr) 8)))))
225     (if trace-instr
226         (print (list (last-pc) "        " mnemonic "    "
227                        (let ((x (assv adr file-reg-names)))
228                          (if x (cdr x) (list "0x" (number->string adr 16))))
229                        (if (or (eq? dest 'wreg)
230                                (= 0 (bitwise-and opcode #x200)))
231                            ", w"
232                            "")
233                        "")))
234     (let* ((result (operation (get-ram adr)))
235            (result-8bit (bitwise-and result #xff)))
236       (cond ((list? dest)
237              ;; result is more than a byte wide (i.e. multiplication)
238              ;; put it in the right destinations (dest is a list of addresses)
239              (let loop ((dest dest) (result result))
240                (if (not (null? dest))
241                    ;; the head of the list is the lsb
242                    (begin (set-ram (car dest) (bitwise-and result #xff))
243                           (loop (cdr dest) (arithmetic-shift result -8))))))
244             ((or (eq? dest 'file) (not (= 0 (bitwise-and opcode #x200))))
245              ;; the result goes in memory (file)
246              (set-ram adr result-8bit))
247             ((eq? dest 'wreg)
248              ;; result goes in wreg
249              (set-wreg result-8bit)))
250       (if (not (eq? flags-changed 'none))
251           (begin
252             (set-zero-flag (if (= 0 result-8bit) 1 0))
253             (if (not (eq? flags-changed 'z))
254                 (begin
255                   (set-negative-flag (if (> result-8bit #x7f) 1 0))
256                   (if (not (eq? flags-changed 'z-n))
257                       (begin
258                         (set-carry-flag (if (or (> result #xff)
259                                                 (< result 0))
260                                             1 0))
261                         (if (not (eq? flags-changed 'c-z-n))
262                             (begin
263                               (set-deccarry-flag 0);;;;;;;;;;;;;;
264                               (set-overflow-flag 0))))))))))));;;;;;;;;;;;;;
266 (define (bit-oriented opcode mnemonic operation)
267   (let* ((f (bitwise-and opcode #xff))
268          (adr (if (= 0 (bitwise-and opcode #x100))
269                   (if (= 0 (bitwise-and f #x80)) f (+ f #xf00))
270                   (+ f (arithmetic-shift (get-bsr) 8))))
271          (b (bitwise-and (arithmetic-shift opcode -9) 7)))
272     (if trace-instr
273         (print (list (last-pc) "        " mnemonic "    "
274                        (let ((x (assv adr file-reg-names)))
275                          (if x (cdr x) (list "0x" (number->string adr 16))))
276                        ", "
277                        (if (= adr STATUS)
278                            (cdr (assv b '((0 . C)
279                                           (1 . DC)
280                                           (2 . Z)
281                                           (3 . OV)
282                                           (4 . N)
283                                           (5 . 5)
284                                           (6 . 6)
285                                           (7 . 7))))
286                            b)
287                        "")))
288     (let* ((result (operation (get-ram adr) b))
289            (result-8bit (bitwise-and result #xff)))
290       (set-ram adr result-8bit))))
292 (define (short-relative-branch opcode mnemonic branch)
293   (let* ((n (bitwise-and opcode #xff))
294          (adr (+ (get-pc) (* 2 (if (> n #x7f) (- n #x100) n)))))
295     (if trace-instr
296         (print (list (last-pc) "        " mnemonic "    "
297                        "0x"
298                        (number->string adr 16)
299                        "")))
300     (if (branch)
301         (begin
302           (get-program-mem)
303           (set-pc adr)))))
305 (define (long-relative-branch opcode mnemonic call?)
306   (let* ((n (bitwise-and opcode #x7ff))
307          (adr (+ (get-pc) (* 2 (if (> n #x3ff) (- n #x800) n)))))
308     (if trace-instr
309         (print (list (last-pc) "        " mnemonic "    "
310                        "0x"
311                        (number->string adr 16)
312                        "")))
313     (if call?
314         (stack-push (get-pc)))
315     (get-program-mem)
316     (set-pc adr)))
318 (define (call-branch opcode mnemonic)
319   (let ((adr (* 2 (+ (bitwise-and opcode #xff)
320                      (arithmetic-shift (get-program-mem) 8)))))
321     (if trace-instr
322         (print (list (last-pc) "        " mnemonic "    "
323                        "0x"
324                        (number->string adr 16)
325                        (if (= 0 (bitwise-and opcode #x100))
326                            ""
327                            ", FAST")
328                        "")))
329     (stack-push (get-pc))
330     (if (not (= 0 (bitwise-and opcode #x100)))
331         (error "call fast not implemented"))
332     (set-pc adr)))
334 (define (goto-branch opcode mnemonic)
335   (let ((adr (* 2 (+ (bitwise-and opcode #xff)
336                      (arithmetic-shift (get-program-mem) 8)))))
337     (if trace-instr
338         (print (list (last-pc) "        " mnemonic "    "
339                        "0x"
340                        (number->string adr 16)
341                        "")))
342     (set-pc adr)))
344 (define (literal-operation opcode mnemonic flags-changed operation)
345   (let ((k (bitwise-and opcode #xff)))
346     (if trace-instr
347         (print (list (last-pc) "        " mnemonic "    "
348                        (if (< k 10) k (list "0x" (number->string k 16)))
349                        "")))
350     (let* ((result (operation k))
351            (result-8bit (bitwise-and result #xff)))
352       (set-wreg result-8bit)
353       (if (not (eq? flags-changed 'none))
354           (begin
355             (set-zero-flag (if (= 0 result-8bit) 1 0))
356             (if (not (eq? flags-changed 'z))
357                 (begin
358                   (set-negative-flag (if (> result-8bit #x7f) 1 0))
359                   (if (not (eq? flags-changed 'z-n))
360                       (begin
361                         (set-carry-flag (if (> result #xff) 1 0))
362                         (if (not (eq? flags-changed 'c-z-n))
363                             (begin
364                               (set-deccarry-flag 0);;;;;;;;;;;;;;
365                               (set-overflow-flag 0))))))))))));;;;;;;;;;;;;;
367 (define (get-program-mem)
368   (set! pic18-cycles (+ pic18-cycles 1))
369   (let* ((pc (get-pc))
370          (lsb (get-rom pc))
371          (msb (get-rom (+ pc 1))))
372     (set-pc (+ (get-pc) 2))
373     (+ (arithmetic-shift msb 8) lsb)))
375 (define (skip)
376   (get-program-mem))
378 (define (hex n)
379   (substring (number->string (+ #x100 n) 16) 1 3))
381 (define (dump-mem)
383   (print "      ")
384   (let loop ((i 0))
385     (if (< i 10)
386         (begin
387           (print (list (hex (u8vector-ref pic18-ram i)) " "))
388           (loop (+ i 1)))))
389   (print (list "  WREG=" (hex (get-wreg)) "\n")))
391 (define (pic18-execute)
392   (set! pic18-exit #f)
393   (set! pic18-cycles 0)
394   (if trace-instr
395       (print "                          "))
396   (let loop ()
397     (if trace-instr
398         (dump-mem))
399     (if pic18-exit
400         (begin
401           (print (list "WREG = d'" (get-wreg) "'\n")))
402         (let ((opcode (get-program-mem)))
403           (let ((proc (vector-ref decode-vector (arithmetic-shift opcode -8))))
404             (proc opcode)
405             (loop))))))
407 (define trace-instr #t)
409 (define (carry)
410   (if (> pic18-carry-flag 0)
411       (begin (set! pic18-carry-flag #f) ;; TODO is this how the PIC18 hardware does it ?
412              1)
413       0))
415 ;------------------------------------------------------------------------------
417 ; Byte-oriented file register operations.
419 (decode-opcode #b001001 10
420   (lambda (opcode)
421     (byte-oriented opcode "addwf" 'c-dc-z-ov-n
422      (lambda (f)
423        (+ f (get-wreg))))))
425 (decode-opcode #b001000 10
426   (lambda (opcode)
427     (byte-oriented opcode "addwfc" 'c-dc-z-ov-n
428      (lambda (f)
429        (+ f (get-wreg) (carry))))))
431 (decode-opcode #b000101 10
432   (lambda (opcode)
433     (byte-oriented opcode "andwf" 'z-n
434      (lambda (f)
435        (bitwise-and f (get-wreg))))))
437 (decode-opcode #b0110101 9
438   (lambda (opcode)
439     (byte-oriented-file opcode "clrf" 'z
440      (lambda (f)
441        0))))
443 (decode-opcode #b000111 10
444   (lambda (opcode)
445     (byte-oriented opcode "comf" 'z-n
446      (lambda (f)
447        (bitwise-not f)))))
449 (decode-opcode #b0110001 9
450   (lambda (opcode)
451     (byte-oriented-file opcode "cpfseq" 'none
452      (lambda (f)
453        (if (= f (get-wreg)) (skip))
454        f))))
456 (decode-opcode #b0110010 9
457   (lambda (opcode)
458     (byte-oriented-file opcode "cpfsgt" 'none
459      (lambda (f)
460        (if (> f (get-wreg)) (skip))
461        f))))
463 (decode-opcode #b0110000 9
464   (lambda (opcode)
465     (byte-oriented-file opcode "cpfslt" 'none
466      (lambda (f)
467        (if (< f (get-wreg)) (skip))
468        f))))
470 (decode-opcode #b000001 10
471   (lambda (opcode)
472     (byte-oriented opcode "decf" 'c-dc-z-ov-n
473      (lambda (f)
474        (- f 1)))))
476 (decode-opcode #b001011 10
477   (lambda (opcode)
478     (byte-oriented opcode "decfsz" 'none
479      (lambda (f)
480        (if (= f 1) (skip))
481        (- f 1)))))
483 (decode-opcode #b010011 10
484   (lambda (opcode)
485     (byte-oriented opcode "dcfsnz" 'none
486      (lambda (f)
487        (if (not (= f 1)) (skip))
488        (- f 1)))))
490 (decode-opcode #b001010 10
491   (lambda (opcode)
492     (byte-oriented opcode "incf" 'c-dc-z-ov-n
493      (lambda (f)
494        (+ f 1)))))
496 (decode-opcode #b001111 10
497   (lambda (opcode)
498     (byte-oriented opcode "incfsz" 'none
499      (lambda (f)
500        (if (= f #xff) (skip))
501        (+ f 1)))))
503 (decode-opcode #b010010 10
504   (lambda (opcode)
505     (byte-oriented opcode "infsnz" 'none
506      (lambda (f)
507        (if (not (= f #xff)) (skip))
508        (+ f 1)))))
510 (decode-opcode #b000100 10
511   (lambda (opcode)
512     (byte-oriented opcode "iorwf" 'z-n
513      (lambda (f)
514        (bitwise-ior f (get-wreg))))))
516 (decode-opcode #b010100 10
517   (lambda (opcode)
518     (byte-oriented opcode "movf" 'z-n
519      (lambda (f)
520        f))))
522 (decode-opcode #b1100 12
523   (lambda (opcode)
524     '(byte-to-byte "movff")
525     (byte-oriented opcode "movff" 'none
526       (lambda (f)
527         f)))) ;; TODO doesn't work
529 (decode-opcode #b0110111 9
530   (lambda (opcode)
531     (byte-oriented-file opcode "movwf" 'none
532      (lambda (f)
533        (get-wreg)))))
535 (decode-opcode #b0000001 9
536   (lambda (opcode)
537     (byte-oriented-wide opcode "mulwf" 'none
538      (lambda (f)
539        (* f (get-wreg)))
540      (list PRODL PRODH))))
542 (decode-opcode #b0110110 9
543   (lambda (opcode)
544     (byte-oriented-file opcode "negf" 'c-dc-z-ov-n
545      (lambda (f)
546        (- f)))))
548 (decode-opcode #b001101 10
549   (lambda (opcode)
550     (byte-oriented opcode "rlcf" 'c-z-n
551      (lambda (f)
552        (+ (arithmetic-shift f 1) (carry))))))
554 (decode-opcode #b010001 10
555   (lambda (opcode)
556     (byte-oriented opcode "rlncf" 'z-n
557      (lambda (f)
558        (+ (arithmetic-shift f 1) (arithmetic-shift f -7))))))
560 (decode-opcode #b001100 10
561   (lambda (opcode)
562     (byte-oriented opcode "rrcf" 'c-z-n
563      (lambda (f)
564        (+ (arithmetic-shift f -1) (arithmetic-shift (carry) 7))))))
566 (decode-opcode #b010000 10
567   (lambda (opcode)
568     (byte-oriented opcode "rrncf" 'z-n
569      (lambda (f)
570        (+ (arithmetic-shift f -1) (arithmetic-shift f 7))))))
572 (decode-opcode #b0110100 9
573   (lambda (opcode)
574     (byte-oriented-file opcode "setf" 'z
575      (lambda (f)
576        #xff))))
578 (decode-opcode #b010101 10
579   (lambda (opcode)
580     (byte-oriented opcode "subfwb" 'c-dc-z-ov-n
581      (lambda (f)
582        (- (get-wreg) f (carry)))))) ;; TODO was (- 1 (carry)), but caused problems with the other
584 (decode-opcode #b010111 10
585   (lambda (opcode)
586     (byte-oriented opcode "subwf" 'c-dc-z-ov-n
587      (lambda (f)
588        (- f (get-wreg))))))
590 (decode-opcode #b010110 10
591   (lambda (opcode)
592     (byte-oriented opcode "subwfb" 'c-dc-z-ov-n
593      (lambda (f)
594        (- f (get-wreg) (carry)))))) ;; TODO !carry didn't work
596 (decode-opcode #b001110 10
597   (lambda (opcode)
598     (byte-oriented opcode "swapf" 'none
599      (lambda (f)
600        (+ (arithmetic-shift f -4) (arithmetic-shift f 4))))))
602 (decode-opcode #b0110011 9
603   (lambda (opcode)
604     (byte-oriented-file opcode "tstfsz" 'none
605      (lambda (f)
606        (if (= f 0) (skip))))))
608 (decode-opcode #b000110 10
609   (lambda (opcode)
610     (byte-oriented opcode "xorwf" 'z-n
611      (lambda (f)
612        (bitwise-xor f (get-wreg))))))
614 ; Bit-oriented file register operations.
616 (decode-opcode #b1001 12
617   (lambda (opcode)
618     (bit-oriented opcode "bcf"
619      (lambda (f b)
620        (bitwise-and f (bitwise-not (arithmetic-shift 1 b)))))))
622 (decode-opcode #b1000 12
623   (lambda (opcode)
624     (bit-oriented opcode "bsf"
625      (lambda (f b)
626        (bitwise-ior f (arithmetic-shift 1 b))))))
628 (decode-opcode #b1011 12
629   (lambda (opcode)
630     (bit-oriented opcode "btfsc"
631      (lambda (f b)
632        (if (= 0 (bitwise-and f (arithmetic-shift 1 b))) (skip))
633        f))))
635 (decode-opcode #b1010 12
636   (lambda (opcode)
637     (bit-oriented opcode "btfss"
638      (lambda (f b)
639        (if (not (= 0 (bitwise-and f (arithmetic-shift 1 b)))) (skip))
640        f))))
642 (decode-opcode #b0111 12
643   (lambda (opcode)
644     (bit-oriented opcode "btg"
645      (lambda (f b)
646        (bitwise-xor f (arithmetic-shift 1 b))))))
648 ; Control operations.
650 (decode-opcode #b11100010 8
651   (lambda (opcode)
652     (short-relative-branch opcode "bc"
653      (lambda ()
654        (not (= 0 (carry)))))))
656 (decode-opcode #b11100110 8
657   (lambda (opcode)
658     (short-relative-branch opcode "bn"
659      (lambda ()
660        (not (= 0 (negative)))))))
662 (decode-opcode #b11100011 8
663   (lambda (opcode)
664     (short-relative-branch opcode "bnc"
665      (lambda ()
666        (= 0 (carry))))))
668 (decode-opcode #b11100111 8
669   (lambda (opcode)
670     (short-relative-branch opcode "bnn"
671      (lambda ()
672        (= 0 (negative))))))
674 (decode-opcode #b11100101 8
675   (lambda (opcode)
676     (short-relative-branch opcode "bnov"
677      (lambda ()
678        (= 0 (overflow))))))
680 (decode-opcode #b11100001 8
681   (lambda (opcode)
682     (short-relative-branch opcode "bnz"
683      (lambda ()
684        (= 0 (zero))))))
686 (decode-opcode #b11100100 8
687   (lambda (opcode)
688     (short-relative-branch opcode "bov"
689      (lambda ()
690        (not (= 0 (overflow)))))))
692 (decode-opcode #b11010 11
693   (lambda (opcode)
694     (long-relative-branch opcode "bra" #f)))
696 (decode-opcode #b11100000 8
697   (lambda (opcode)
698     (short-relative-branch opcode "bz"
699      (lambda ()
700        (not (= 0 (zero)))))))
702 (decode-opcode #b1110110 9
703   (lambda (opcode)
704     (call-branch opcode "call")))
706 (decode-opcode #b11101111 8
707   (lambda (opcode)
708     (goto-branch opcode "goto")))
710 (decode-opcode #b11011 11
711   (lambda (opcode)
712     (long-relative-branch opcode "rcall" #t)))
714 (decode-opcode #b1111 12
715   (lambda (opcode)
716     (if trace-instr
717         (print (list (last-pc) "        nop     ")))))
719 (decode-opcode #b00000000 8
720   (lambda (opcode)
721     (cond ((= opcode #b0000000000000100)
722            (if trace-instr
723                (print (list (last-pc) " clrwdt  ")))
724            (clrwdt opcode))
725           ((= opcode #b0000000000000111)
726            (if trace-instr
727                (print (list (last-pc) " daw     ")))
728            (daw opcode))
729           ((= opcode #b0000000000000000)
730            (if trace-instr
731                (print (list (last-pc) " nop     "))))
732           ((= opcode #b0000000000000110)
733            (if trace-instr
734                (print (list (last-pc) " pop     ")))
735            (stack-pop))
736           ((= opcode #b0000000000000101)
737            (if trace-instr
738                (print (list (last-pc) " push    ")))
739            (stack-push (get-pc)))
740           ((= opcode #b0000000011111111)
741            (if trace-instr
742                (print (list (last-pc) " reset   ")))
743            (set-pc 0))
744           ((= opcode #b0000000000010000)
745            (if trace-instr
746                (print (list (last-pc) " retfie  ")))
747            (get-program-mem)
748            (stack-pop))
749           ((= opcode #b0000000000010001)
750            (if trace-instr
751                (print (list (last-pc) " retfie  FAST")))
752            (error "retfie fast not implemented")
753            (get-program-mem)
754            (stack-pop))
755           ((= opcode #b0000000000010010)
756            (if trace-instr
757                (print (list (last-pc) " return  ")))
758            (get-program-mem)
759            (stack-pop))
760           ((= opcode #b0000000000010011)
761            (if trace-instr
762                (print (list (last-pc) " return  FAST")))
763            (error "return fast not implemented")
764            (get-program-mem)
765            (stack-pop))
766           ((= opcode #b0000000000000011)
767            (if trace-instr
768                (print (list (last-pc) " sleep   ")))
769            (set! pic18-exit #t))
770           (else
771            (if trace-instr
772                (print (list (last-pc) " ???     ")))
773            (error "???")))))
775 ; Literal operations.
777 (decode-opcode #b00001111 8
778   (lambda (opcode)
779     (literal-operation opcode "addlw" 'c-dc-z-ov-n
780      (lambda (k)
781        (+ k (get-wreg))))))
783 (decode-opcode #b00001011 8
784   (lambda (opcode)
785     (literal-operation opcode "andlw" 'z-n
786      (lambda (k)
787        (bitwise-and k (get-wreg))))))
789 (decode-opcode #b00001001 8
790   (lambda (opcode)
791     (literal-operation opcode "iorlw" 'z-n
792      (lambda (k)
793        (bitwise-ior k (get-wreg))))))
796 (define (lfsr f k)
797   (make-instruction
798    2
799    (lambda ()
800      (make-listing "lfsr" (file-text f) (lit-text k)))
801    (lambda ()
802      (asm-16 (bitmask "1110 1110 00ff kkkk" (file f) (quotient (lit k) 256)))
803      (asm-16 (bitmask "1111 0000 kkkk kkkk" (modulo (lit k) 256))))))
806 (define (movlb k)
807   (make-instruction
808    1
809    (lambda ()
810      (make-listing "movlb" (lit-text k)))
811    (lambda ()
812      (asm-16 (bitmask "0000 0001 0000 kkkk" (lit k))))))
814 (decode-opcode #b00001110 8
815   (lambda (opcode)
816     (literal-operation opcode "movlw" 'none
817      (lambda (k)
818        k))))
820 (decode-opcode #b00001101 8
821   (lambda (opcode)
822     (literal-operation opcode "mullw" 'none
823      (lambda (k)
824        (* k (get-wreg))))))
826 (decode-opcode #b00001100 8
827   (lambda (opcode)
828     (literal-operation opcode "retlw" 'none
829      (lambda (k)
830        (get-program-mem)
831        (stack-pop)
832        k))))
834 (decode-opcode #b00001000 8
835   (lambda (opcode)
836     (literal-operation opcode "sublw" 'c-dc-z-ov-n
837      (lambda (k)
838        (- k (get-wreg))))))
840 (decode-opcode #b00001010 8
841   (lambda (opcode)
842     (literal-operation opcode "xorlw" 'z-n
843      (lambda (k)
844        (bitwise-xor k (get-wreg))))))
846 ; Program memory operations.
849 (define (tblrd*)
850   (make-instruction
851    2
852    (lambda ()
853      (make-listing "tblrd*"))
854    (lambda ()
855      (asm-16 (bitmask "0000 0000 0000 1000")))))
858 (define (tblrd*+)
859   (make-instruction
860    2
861    (lambda ()
862      (make-listing "tblrd*+"))
863    (lambda ()
864      (asm-16 (bitmask "0000 0000 0000 1001")))))
867 (define (tblrd*-)
868   (make-instruction
869    2
870    (lambda ()
871      (make-listing "tblrd*-"))
872    (lambda ()
873      (asm-16 (bitmask "0000 0000 0000 1010")))))
876 (define (tblrd+*)
877   (make-instruction
878    2
879    (lambda ()
880      (make-listing "tblrd+*"))
881    (lambda ()
882      (asm-16 (bitmask "0000 0000 0000 1011")))))
885 (define (tblwt*)
886   (make-instruction
887    2
888    (lambda ()
889      (make-listing "tblwt*"))
890    (lambda ()
891      (asm-16 (bitmask "0000 0000 0000 1100")))))
894 (define (tblwt*+)
895   (make-instruction
896    2
897    (lambda ()
898      (make-listing "tblwt*+"))
899    (lambda ()
900      (asm-16 (bitmask "0000 0000 0000 1101")))))
903 (define (tblwt*-)
904   (make-instruction
905    2
906    (lambda ()
907      (make-listing "tblwt*-"))
908    (lambda ()
909      (asm-16 (bitmask "0000 0000 0000 1110")))))
912 (define (tblwt+*)
913   (make-instruction
914    2
915    (lambda ()
916      (make-listing "tblwt+*"))
917    (lambda ()
918      (asm-16 (bitmask "0000 0000 0000 1111")))))
920 ;------------------------------------------------------------------------------
922 (define (read-hex-file filename)
924   (define addr-width 32)
926   (define (syntax-error)
927     (error "*** Syntax error in HEX file"))
929   (let ((f
930          (with-exception-catcher
931           (lambda (exc)
932             #f)
933           (lambda ()
934             (open-input-file filename)))))
936     (define mem (make-vector 16 #f))
938     (define (mem-store! a b)
939       (let loop ((m mem)
940                  (a a)
941                  (x (- addr-width 4)))
942         (if (= x 0)
943             (vector-set! m a b)
944             (let ((i (arithmetic-shift a (- x))))
945               (let ((v (vector-ref m i)))
946                 (loop (or v
947                           (let ((v (make-vector 16 #f)))
948                             (vector-set! m i v)
949                             v))
950                       (- a (arithmetic-shift i x))
951                       (- x 4)))))))
953     (define (mem->list)
955       (define (f m a n tail)
957         (define (g i a n tail)
958           (if (>= i 0)
959               (g (- i 1) (- a n) n (f (vector-ref m i) a n tail))
960               tail))
962         (if m
963             (if (= n 1)
964                 (cons (cons (- a 1) m) tail)
965                 (g 15 a (quotient n 16) tail))
966             tail))
968       (f mem (expt 2 addr-width) (expt 2 addr-width) '()))
970     (define hi16
971       0)
973     (define (read-hex-nibble)
974       (let ((c (read-char f)))
975         (cond ((and (char>=? c #\0) (char<=? c #\9))
976                (- (char->integer c) (char->integer #\0)))
977               ((and (char>=? c #\A) (char<=? c #\F))
978                (+ 10 (- (char->integer c) (char->integer #\A))))
979               ((and (char>=? c #\a) (char<=? c #\f))
980                (+ 10 (- (char->integer c) (char->integer #\a))))
981               (else
982                (syntax-error)))))
983              
984     (define (read-hex-byte)
985       (let* ((a (read-hex-nibble))
986              (b (read-hex-nibble)))
987         (+ b (* a 16))))
989     (if f
990         (begin
991           (let loop1 ()
992             (let ((c (read-char f)))
993               (cond ((not (char? c)))
994                     ((or (char=? c #\linefeed)
995                          (char=? c #\return))
996                      (loop1))
997                     ((not (char=? c #\:))
998                      (syntax-error))
999                     (else
1000                      (let* ((len (read-hex-byte))
1001                             (a1 (read-hex-byte))
1002                             (a2 (read-hex-byte))
1003                             (type (read-hex-byte)))
1004                        (let* ((adr (+ a2 (* 256 a1)))
1005                               (sum (+ len a1 a2 type)))
1006                          (cond ((= type 0)
1007                                 (let loop2 ((i 0))
1008                                   (if (< i len)
1009                                       (let ((a (+ adr (* hi16 65536)))
1010                                             (b (read-hex-byte)))
1011                                         (mem-store! a b)
1012                                         (set! adr (modulo (+ adr 1) 65536))
1013                                         (set! sum (+ sum b))
1014                                         (loop2 (+ i 1))))))
1015                                ((= type 1)
1016                                 (if (not (= len 0))
1017                                     (syntax-error)))
1018                                ((= type 4)
1019                                 (if (not (= len 2))
1020                                     (syntax-error))
1021                                 (let* ((a1 (read-hex-byte))
1022                                        (a2 (read-hex-byte)))
1023                                   (set! sum (+ sum a1 a2))
1024                                   (set! hi16 (+ a2 (* 256 a1)))))
1025                                (else
1026                                 (syntax-error)))
1027                          (let ((check (read-hex-byte)))
1028                            (if (not (= (modulo (- sum) 256) check))
1029                                (syntax-error)))
1030                          (let ((c (read-char f)))
1031                            (if (or (not (or (char=? c #\linefeed)
1032                                             (char=? c #\return)))
1033                                    (not (= type 1)))
1034                                (loop1)))))))))
1036           (close-input-port f)
1038           (mem->list))
1039         (begin
1040           (error "*** Could not open the HEX file")
1041           #f))))
1043 ;------------------------------------------------------------------------------
1045 (define (execute-hex-file filename)
1046   (let ((program (read-hex-file filename)))
1047     (pic18-sim-setup)
1048     (for-each (lambda (x) (set-rom (car x) (cdr x))) program)
1049     (pic18-execute)
1050     (pic18-sim-cleanup)))