Skip to content
Snippets Groups Projects
Commit f99365a3 authored by dam1n19's avatar dam1n19
Browse files

Changed sourceme behaviour to find other sourceme files and changed order of...

Changed sourceme behaviour to find other sourceme files and changed order of words written out of python model for system stimulus
parent f0e902ac
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,7 @@ def main():
for idx, word in enumerate(in_data_words_list):
sub_word_count = 0
while sub_word_count < 16:
sub_word = int(word, 2) >> (32 * (15 - sub_word_count)) & 0xFFFF_FFFF
sub_word = int(word, 2) >> (32 * (sub_word_count)) & 0xFFFF_FFFF
sub_word_last = 0
if sub_word_count == 15:
sub_word_last = 1
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -11,11 +11,23 @@
#!/usr/bin/env bash
# Set environment Variables for Repository
export SHA_2_ACC_DIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
if [ -z "$SHA_2_ACC_DIR" ]; then
# Set environment Variables for Repository
export SHA_2_ACC_DIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
# Add flow directory to Path
export PATH=$PATH:$SHA_2_ACC_DIR/flow
# Add flow directory to Path
export PATH=$PATH:$SHA_2_ACC_DIR/flow
# Set Default Simulator
export SIMULATOR="ivlog"
# Source Top-level sourceme
for d in $WRAP_ACC_DIR/../* ; do
if [ -d "$d" ]; then
if test -f "$d/sourceme"; then
source $d/sourceme
fi
fi
done
fi
# Set Default Simulator
export SIMULATOR="ivlog"
\ No newline at end of file
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