Z
- Is the result zero?S
- Is the top bit of the result set?C
- Did a borrow not occur (see Subtraction on the 6502)?- For architectures with a true borrow flag, invert the
C
bit.
- For architectures with a true borrow flag, invert the
V
- Does the result ofa - b
fit within signed 16-bit range?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX=/path/to/install | |
FPGA_ROOT=/root/of/repos | |
NUM_JOBS=4 | |
# If non-zero, enable sscache optimizations. Need to set CC and CXX as well. | |
SCCACHE=0 | |
CC=gcc | |
CXX=g++ | |
# If non-zero, use chipdbs built on another machine. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "take-api" | |
version = "0.1.0" | |
authors = ["William D. Jones <thor0505@comcast.net>"] | |
edition = "2018" | |
[dependencies] | |
bare-metal = {version = "0.2.5", optional = true } | |
[dependencies.msp430-rt] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by Yosys 0.8+29 (git sha1 d86ea6ba, x86_64-w64-mingw32-g++ 7.3.0 -Os) | |
autoidx 712 | |
attribute \cells_not_processed 1 | |
attribute \src "boneless.v:3" | |
module \boneless_formal | |
attribute \src "boneless.v:155" | |
wire $0$formal$boneless.v:161$14_CHECK[0:0]$116 | |
attribute \src "boneless.v:155" | |
wire $0$formal$boneless.v:161$14_EN[0:0]$117 | |
attribute \src "boneless.v:161" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROJECT=quiz_4 | |
check: $(PROJECT).smt2 | |
yosys-smtbmc -s z3 -t 25 --presat --dump-smt2 $(PROJECT)_bmc.smt2 --dump-vcd $(PROJECT)_bmc.vcd $(PROJECT).smt2 | |
yosys-smtbmc -s z3 -i -t 25 --presat --dump-smt2 $(PROJECT)_tmp.smt2 --dump-vcd $(PROJECT)_tmp.vcd $(PROJECT).smt2 | |
$(PROJECT).smt2: $(PROJECT).v | |
yosys -s formal.ys | |
clean:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
DEFAULT_ROOT=Net-dbg-`date +%Y-%m-%d-%H-%M-%S` | |
export CVSROOT="anoncvs@anoncvs.NetBSD.org:/cvsroot" | |
if [ -z ${SRCROOT+x} ]; then | |
mkdir $DEFAULT_ROOT | |
cd $DEFAULT_ROOT | |
cvs -q checkout -A -P src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In archive C:/msys64/mingw32/i686-w64-mingw32/lib/libpthread.dll.a: | |
d000136.o: file format pe-i386 | |
rw-r--r-- 0/0 271 May 18 07:50 2018 d000136.o | |
architecture: i386, flags 0x00000038: | |
HAS_DEBUG, HAS_SYMS, HAS_LOCALS | |
start address 0x00000000 | |
Characteristics 0x105 | |
relocations stripped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In archive lib/x86/pthreadVC2.lib: | |
pthreadVC2.dll: file format pe-i386 | |
--------- 0/0 731 Dec 21 20:07 2006 pthreadVC2.dll | |
architecture: i386, flags 0x0000003d: | |
HAS_RELOC, HAS_LINENO, HAS_DEBUG, HAS_SYMS, HAS_LOCALS | |
start address 0x00000000 | |
Characteristics 0x100 | |
32 bit words |
NewerOlder