Print the JSON encoding of a vl-gatedelay-p to ps.
(vl-jp-gatedelay x &key (ps 'ps)) → ps
Function:
(defun vl-jp-gatedelay-fn (x ps) (declare (xargs :stobjs (ps))) (declare (xargs :guard (vl-gatedelay-p x))) (let ((__function__ 'vl-jp-gatedelay)) (declare (ignorable __function__)) (vl-ps-seq (vl-print "{\"tag\": ") (jp-sym ':vl-gatedelay) (vl-print ", ") (vl-print-str "\"rise\": ") (vl-jp-expr (vl-gatedelay->rise x)) (vl-println? ", ") (vl-print-str "\"fall\": ") (vl-jp-expr (vl-gatedelay->fall x)) (vl-println? ", ") (vl-print-str "\"high\": ") (vl-jp-maybe-expr (vl-gatedelay->high x)) (vl-println? "}"))))