Skip to content
Snippets Groups Projects
Commit 36846939 authored by wlott's avatar wlott
Browse files

NULL-OFFSET is now in the MIPS package, not the C package.

parent c76fe83d
No related branches found
No related tags found
No related merge requests found
;;; -*- Mode: Lisp; Package: MIPS -*-
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-disassem.lisp,v 1.12 1990/06/23 19:01:03 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-disassem.lisp,v 1.13 1990/11/07 13:15:26 wlott Exp $
;;;
;;; A simple dissambler for the MIPS R2000.
;;;
......@@ -124,7 +124,7 @@
(cond ((and (zerop rs) (or (string= name "ADDI") (string= name "ADDIU")))
(format stream "~16,8TLOADI~8,8T~A, #x~X~%"
(register-name rt) immed))
((and (= rs c::null-offset) (string= name "ADDI")
((and (= rs null-offset) (string= name "ADDI")
(eq register-name-style :lisp))
;; Major hack ...
(format stream "~16,8T~A~8,8T~A, ~A, #x~X~48,8T; ~S~%"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment