Skip to content

Instantly share code, notes, and snippets.

View cmarqu's full-sized avatar

Colin Marquardt cmarqu

  • Dresden, Germany
View GitHub Profile
gitpod ~ $ git clone --branch add-vhdl-duts https://github.com/cmarqu/uvm-python.git
Cloning into 'uvm-python'...
remote: Enumerating objects: 1526, done.
remote: Counting objects: 100% (1526/1526), done.
remote: Compressing objects: 100% (731/731), done.
remote: Total 8925 (delta 867), reused 1244 (delta 681), pack-reused 7399
Receiving objects: 100% (8925/8925), 4.08 MiB | 8.45 MiB/s, done.
Resolving deltas: 100% (5969/5969), done.
gitpod ~ $ cd uvm-python/
gitpod ~/uvm-python $ python -m pip install --user .
default namespace ucis = "http://www.w3.org/2001/XMLSchema-instance"
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
start =
element UCIS
{
element sourceFiles { SOURCE_FILE }+,
element historyNodes { HISTORY_NODE }+,
element instanceCoverages { INSTANCE_COVERAGE }+,
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns="UCIS" targetNamespace="UCIS"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<!-- Definition of NAME_VALUE -->
<xsd:complexType name="NAME_VALUE">
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="value" type="xsd:string"/>
</xsd:sequence>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2015, 2016, Lars Asplund lars.anders.asplund@gmail.com
"""
Interface for the Synopsys VCS MX simulator
"""
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2015, 2016, Lars Asplund lars.anders.asplund@gmail.com
"""
Interface for the Synopsys VCS MX simulator
"""
@cmarqu
cmarqu / .emacs-flycheck.el
Created January 21, 2016 15:25
Flycheck setup for Cadence irun
(require 'flycheck)
(setq flycheck-irun-hdlvar (concat (getenv "PRJ_HOME") "/env/df2/hdl.var.dig.nogui"))
;(setq flycheck-irun-cdslib (concat (getenv "PRJ_HOME") "/units/p1947/simulation/ncsim/cds.lib"))
(setq flycheck-hdl-irun-executable (concat (getenv "PRJ_HOME") "/env/scripts/irun_wrapper"))
(flycheck-define-checker hdl-irun
"A HDL checker using Cadence irun."
:command ("irun" "-compile"
(config-file "-hdlvar" flycheck-irun-hdlvar)
; (config-file "-cdslib" flycheck-irun-cdslib)
source)
;;; http://stackoverflow.com/questions/10879133/highlight-which-of-the-file-names-in-emacs-buffer-are-missing
(defvar filehi-path-re "\\([[:alnum:]/$_.-]+/[[:alnum:]$_.\\*/-]+\\)"
"Regexp used for path matching.")
(defface filehi-file-existing
'((t (:background "lawn green")))
"Face for existing files.")
(defface filehi-file-missing
--- /home/marquardt/emacs/emacsgoodies/wgrep.el.orig 2011-03-06 12:30:52.000000000 +0100
+++ /home/marquardt/emacs/emacsgoodies/wgrep.el 2012-01-30 10:38:17.000155000 +0100
@@ -24,7 +24,7 @@
;;; Commentary:
-;; wgrep provides to edit grep buffer and to apply the changes to
+;; wgrep allows you to edit a grep buffer and apply those changes to
;; the file buffer.