Skip to content
Snippets Groups Projects
Commit f19263cc authored by dtc's avatar dtc
Browse files

Add a printer for the CDQ instruction.

parent 5cdf3ece
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/insts.lisp,v 1.5 1997/04/23 18:52:23 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/insts.lisp,v 1.6 1997/05/11 11:37:55 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1367,6 +1367,7 @@ ...@@ -1367,6 +1367,7 @@
;;; CDQ -- Convert Double Word to Quad Word. EDX:EAX <- sign_xtnd(EAX) ;;; CDQ -- Convert Double Word to Quad Word. EDX:EAX <- sign_xtnd(EAX)
;;; ;;;
(define-instruction cdq (segment) (define-instruction cdq (segment)
(:printer byte ((op #b10011001)))
(:emitter (:emitter
(maybe-emit-operand-size-prefix segment :dword) (maybe-emit-operand-size-prefix segment :dword)
(emit-byte segment #b10011001))) (emit-byte segment #b10011001)))
......
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