OpenCores
URL https://opencores.org/ocsvn/darkriscv/darkriscv/trunk

Subversion Repositories darkriscv

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 4 to Rev 5
    Reverse comparison

Rev 4 → Rev 5

darkriscv/trunk/.git/hooks/fsmonitor-watchman.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/update.sample =================================================================== --- darkriscv/trunk/.git/hooks/update.sample (revision 4) +++ darkriscv/trunk/.git/hooks/update.sample (nonexistent) @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to block unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0
darkriscv/trunk/.git/hooks/update.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/pre-push.sample =================================================================== --- darkriscv/trunk/.git/hooks/pre-push.sample (revision 4) +++ darkriscv/trunk/.git/hooks/pre-push.sample (nonexistent) @@ -1,53 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=`git rev-list -n 1 --grep '^WIP' "$range"` - if [ -n "$commit" ] - then - echo >&2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0
darkriscv/trunk/.git/hooks/pre-push.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/post-update.sample =================================================================== --- darkriscv/trunk/.git/hooks/post-update.sample (revision 4) +++ darkriscv/trunk/.git/hooks/post-update.sample (nonexistent) @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info
darkriscv/trunk/.git/hooks/post-update.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/pre-rebase.sample =================================================================== --- darkriscv/trunk/.git/hooks/pre-rebase.sample (revision 4) +++ darkriscv/trunk/.git/hooks/pre-rebase.sample (nonexistent) @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up to date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -<<\DOC_END - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". - -DOC_END
darkriscv/trunk/.git/hooks/pre-rebase.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/pre-receive.sample =================================================================== --- darkriscv/trunk/.git/hooks/pre-receive.sample (revision 4) +++ darkriscv/trunk/.git/hooks/pre-receive.sample (nonexistent) @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to make use of push options. -# The example simply echoes all push options that start with 'echoback=' -# and rejects all pushes when the "reject" push option is used. -# -# To enable this hook, rename this file to "pre-receive". - -if test -n "$GIT_PUSH_OPTION_COUNT" -then - i=0 - while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" - do - eval "value=\$GIT_PUSH_OPTION_$i" - case "$value" in - echoback=*) - echo "echo from the pre-receive-hook: ${value#*=}" >&2 - ;; - reject) - exit 1 - esac - i=$((i + 1)) - done -fi
darkriscv/trunk/.git/hooks/pre-receive.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/prepare-commit-msg.sample =================================================================== --- darkriscv/trunk/.git/hooks/prepare-commit-msg.sample (revision 4) +++ darkriscv/trunk/.git/hooks/prepare-commit-msg.sample (nonexistent) @@ -1,42 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first one removes the -# "# Please enter the commit message..." help message. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi
darkriscv/trunk/.git/hooks/prepare-commit-msg.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/applypatch-msg.sample =================================================================== --- darkriscv/trunk/.git/hooks/applypatch-msg.sample (revision 4) +++ darkriscv/trunk/.git/hooks/applypatch-msg.sample (nonexistent) @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -:
darkriscv/trunk/.git/hooks/applypatch-msg.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/pre-applypatch.sample =================================================================== --- darkriscv/trunk/.git/hooks/pre-applypatch.sample (revision 4) +++ darkriscv/trunk/.git/hooks/pre-applypatch.sample (nonexistent) @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -:
darkriscv/trunk/.git/hooks/pre-applypatch.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/commit-msg.sample =================================================================== --- darkriscv/trunk/.git/hooks/commit-msg.sample (revision 4) +++ darkriscv/trunk/.git/hooks/commit-msg.sample (nonexistent) @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -}
darkriscv/trunk/.git/hooks/commit-msg.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/hooks/pre-commit.sample =================================================================== --- darkriscv/trunk/.git/hooks/pre-commit.sample (revision 4) +++ darkriscv/trunk/.git/hooks/pre-commit.sample (nonexistent) @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=$(git hash-object -t tree /dev/null) -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against --
darkriscv/trunk/.git/hooks/pre-commit.sample Property changes : Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Index: darkriscv/trunk/.git/description =================================================================== --- darkriscv/trunk/.git/description (revision 4) +++ darkriscv/trunk/.git/description (nonexistent) @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. Index: darkriscv/trunk/.git/COMMIT_EDITMSG =================================================================== --- darkriscv/trunk/.git/COMMIT_EDITMSG (revision 4) +++ darkriscv/trunk/.git/COMMIT_EDITMSG (nonexistent) @@ -1,16 +0,0 @@ - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch master -# Your branch is up to date with 'origin/master'. -# -improved README readability for old school DEC VT220 users. - -Changes to be committed: - modified: README.md -# -# Untracked files: -# .svn/ -# boards/avnet_microboard_lx9/iseconfig/ -# Index: darkriscv/trunk/.git/packed-refs =================================================================== --- darkriscv/trunk/.git/packed-refs (revision 4) +++ darkriscv/trunk/.git/packed-refs (nonexistent) @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled sorted -5b3778f02d668aac2fe03274e2f262cbc6cba5d2 refs/remotes/origin/master Index: darkriscv/trunk/.git/logs/refs/remotes/origin/HEAD =================================================================== --- darkriscv/trunk/.git/logs/refs/remotes/origin/HEAD (revision 4) +++ darkriscv/trunk/.git/logs/refs/remotes/origin/HEAD (nonexistent) @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 5b3778f02d668aac2fe03274e2f262cbc6cba5d2 Marcelo Samsoniuk 1611772248 -0300 clone: from https://github.com/darklife/darkriscv Index: darkriscv/trunk/.git/logs/refs/remotes/origin/master =================================================================== --- darkriscv/trunk/.git/logs/refs/remotes/origin/master (revision 4) +++ darkriscv/trunk/.git/logs/refs/remotes/origin/master (nonexistent) @@ -1,5 +0,0 @@ -5b3778f02d668aac2fe03274e2f262cbc6cba5d2 f1d279733ec139eff18ed9b2c15ee2209120bcc6 Marcelo Samsoniuk 1611966546 -0300 pull: fast-forward -f1d279733ec139eff18ed9b2c15ee2209120bcc6 878bc324de54cbf2aad11eb33705651d29fc4de5 Marcelo Samsoniuk 1612040698 -0300 update by push -878bc324de54cbf2aad11eb33705651d29fc4de5 fb2ea8caa11439e4404776a780ba06670c147427 Marcelo Samsoniuk 1612164827 -0300 update by push -fb2ea8caa11439e4404776a780ba06670c147427 8425b8e17a0e91727ec5437321a80ecd283c98fd Marcelo Samsoniuk 1612232223 -0300 pull: fast-forward -8425b8e17a0e91727ec5437321a80ecd283c98fd 91d072ad9387d7e52fab9dcfd695b0f5dc683353 Marcelo Samsoniuk 1612232438 -0300 update by push Index: darkriscv/trunk/.git/logs/refs/heads/master =================================================================== --- darkriscv/trunk/.git/logs/refs/heads/master (revision 4) +++ darkriscv/trunk/.git/logs/refs/heads/master (nonexistent) @@ -1,6 +0,0 @@ -0000000000000000000000000000000000000000 5b3778f02d668aac2fe03274e2f262cbc6cba5d2 Marcelo Samsoniuk 1611772248 -0300 clone: from https://github.com/darklife/darkriscv -5b3778f02d668aac2fe03274e2f262cbc6cba5d2 f1d279733ec139eff18ed9b2c15ee2209120bcc6 Marcelo Samsoniuk 1611966546 -0300 pull: Fast-forward -f1d279733ec139eff18ed9b2c15ee2209120bcc6 878bc324de54cbf2aad11eb33705651d29fc4de5 Marcelo Samsoniuk 1612040168 -0300 commit: hotfix regarding a bug in the div/mod routines -878bc324de54cbf2aad11eb33705651d29fc4de5 fb2ea8caa11439e4404776a780ba06670c147427 Marcelo Samsoniuk 1612164738 -0300 commit: small fixes and optimizations in the firmware, SoC and core. -fb2ea8caa11439e4404776a780ba06670c147427 8425b8e17a0e91727ec5437321a80ecd283c98fd Marcelo Samsoniuk 1612232223 -0300 pull: Fast-forward -8425b8e17a0e91727ec5437321a80ecd283c98fd 91d072ad9387d7e52fab9dcfd695b0f5dc683353 Marcelo Samsoniuk 1612232365 -0300 commit: improved README readability for old school DEC VT220 users. Index: darkriscv/trunk/.git/logs/HEAD =================================================================== --- darkriscv/trunk/.git/logs/HEAD (revision 4) +++ darkriscv/trunk/.git/logs/HEAD (nonexistent) @@ -1,6 +0,0 @@ -0000000000000000000000000000000000000000 5b3778f02d668aac2fe03274e2f262cbc6cba5d2 Marcelo Samsoniuk 1611772248 -0300 clone: from https://github.com/darklife/darkriscv -5b3778f02d668aac2fe03274e2f262cbc6cba5d2 f1d279733ec139eff18ed9b2c15ee2209120bcc6 Marcelo Samsoniuk 1611966546 -0300 pull: Fast-forward -f1d279733ec139eff18ed9b2c15ee2209120bcc6 878bc324de54cbf2aad11eb33705651d29fc4de5 Marcelo Samsoniuk 1612040168 -0300 commit: hotfix regarding a bug in the div/mod routines -878bc324de54cbf2aad11eb33705651d29fc4de5 fb2ea8caa11439e4404776a780ba06670c147427 Marcelo Samsoniuk 1612164738 -0300 commit: small fixes and optimizations in the firmware, SoC and core. -fb2ea8caa11439e4404776a780ba06670c147427 8425b8e17a0e91727ec5437321a80ecd283c98fd Marcelo Samsoniuk 1612232223 -0300 pull: Fast-forward -8425b8e17a0e91727ec5437321a80ecd283c98fd 91d072ad9387d7e52fab9dcfd695b0f5dc683353 Marcelo Samsoniuk 1612232365 -0300 commit: improved README readability for old school DEC VT220 users. Index: darkriscv/trunk/.git/config =================================================================== --- darkriscv/trunk/.git/config (revision 4) +++ darkriscv/trunk/.git/config (nonexistent) @@ -1,13 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true - precomposeunicode = true -[remote "origin"] - url = https://github.com/darklife/darkriscv - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "master"] - remote = origin - merge = refs/heads/master Index: darkriscv/trunk/.git/index =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/index =================================================================== --- darkriscv/trunk/.git/index (revision 4) +++ darkriscv/trunk/.git/index (nonexistent)
darkriscv/trunk/.git/index Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.idx =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.idx =================================================================== --- darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.idx (revision 4) +++ darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.idx (nonexistent)
darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.idx Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.pack =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.pack =================================================================== --- darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.pack (revision 4) +++ darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.pack (nonexistent)
darkriscv/trunk/.git/objects/pack/pack-0de11649ac4a8171b4e41c44de9db7963ebcb74a.pack Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/ba/5a2874aa0cf9695921f3350bb6c529740b2b69 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/ba/5a2874aa0cf9695921f3350bb6c529740b2b69 =================================================================== --- darkriscv/trunk/.git/objects/ba/5a2874aa0cf9695921f3350bb6c529740b2b69 (revision 4) +++ darkriscv/trunk/.git/objects/ba/5a2874aa0cf9695921f3350bb6c529740b2b69 (nonexistent)
darkriscv/trunk/.git/objects/ba/5a2874aa0cf9695921f3350bb6c529740b2b69 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/bb/8b5b22601732cc97919a7f687de8c2ceb5ae15 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/bb/8b5b22601732cc97919a7f687de8c2ceb5ae15 =================================================================== --- darkriscv/trunk/.git/objects/bb/8b5b22601732cc97919a7f687de8c2ceb5ae15 (revision 4) +++ darkriscv/trunk/.git/objects/bb/8b5b22601732cc97919a7f687de8c2ceb5ae15 (nonexistent)
darkriscv/trunk/.git/objects/bb/8b5b22601732cc97919a7f687de8c2ceb5ae15 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/71/4c02ed5fdb889d66c8c4b6006dcec51a80efb2 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/71/4c02ed5fdb889d66c8c4b6006dcec51a80efb2 =================================================================== --- darkriscv/trunk/.git/objects/71/4c02ed5fdb889d66c8c4b6006dcec51a80efb2 (revision 4) +++ darkriscv/trunk/.git/objects/71/4c02ed5fdb889d66c8c4b6006dcec51a80efb2 (nonexistent)
darkriscv/trunk/.git/objects/71/4c02ed5fdb889d66c8c4b6006dcec51a80efb2 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/fb/2ea8caa11439e4404776a780ba06670c147427 =================================================================== --- darkriscv/trunk/.git/objects/fb/2ea8caa11439e4404776a780ba06670c147427 (revision 4) +++ darkriscv/trunk/.git/objects/fb/2ea8caa11439e4404776a780ba06670c147427 (nonexistent) @@ -1,4 +0,0 @@ -xMn0N1h%Q%+(YwڄIAҮW?h6ݾo̓$9g0_R@cӫc#X-F^ jh 3쇽m)uRs]ca/H~ rɛ Ux8Ypg -뻡÷B.&":n-hs+s2ɐ`<#N8y_^1Iˢx9r@ [H=O3t x -AŊ_=7gdEy/$[H9}fg0q^p]xHd?`&{>X<)&`!DǬf}X^Ubڠ( -}]6݁>0^ڋ*&e|b&5fJtXLʢgre2= Xv\ \ No newline at end of file Index: darkriscv/trunk/.git/objects/90/a4feeaacff3173a579d2ac658a7e2593878a79 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/90/a4feeaacff3173a579d2ac658a7e2593878a79 =================================================================== --- darkriscv/trunk/.git/objects/90/a4feeaacff3173a579d2ac658a7e2593878a79 (revision 4) +++ darkriscv/trunk/.git/objects/90/a4feeaacff3173a579d2ac658a7e2593878a79 (nonexistent)
darkriscv/trunk/.git/objects/90/a4feeaacff3173a579d2ac658a7e2593878a79 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/de/eb128359691f5a0c32ab18c67859d7384a910d =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/de/eb128359691f5a0c32ab18c67859d7384a910d =================================================================== --- darkriscv/trunk/.git/objects/de/eb128359691f5a0c32ab18c67859d7384a910d (revision 4) +++ darkriscv/trunk/.git/objects/de/eb128359691f5a0c32ab18c67859d7384a910d (nonexistent)
darkriscv/trunk/.git/objects/de/eb128359691f5a0c32ab18c67859d7384a910d Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/91/d072ad9387d7e52fab9dcfd695b0f5dc683353 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/91/d072ad9387d7e52fab9dcfd695b0f5dc683353 =================================================================== --- darkriscv/trunk/.git/objects/91/d072ad9387d7e52fab9dcfd695b0f5dc683353 (revision 4) +++ darkriscv/trunk/.git/objects/91/d072ad9387d7e52fab9dcfd695b0f5dc683353 (nonexistent)
darkriscv/trunk/.git/objects/91/d072ad9387d7e52fab9dcfd695b0f5dc683353 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/19/538cb074fe0bfdd5bdb97e5d3c112a341841fd =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/19/538cb074fe0bfdd5bdb97e5d3c112a341841fd =================================================================== --- darkriscv/trunk/.git/objects/19/538cb074fe0bfdd5bdb97e5d3c112a341841fd (revision 4) +++ darkriscv/trunk/.git/objects/19/538cb074fe0bfdd5bdb97e5d3c112a341841fd (nonexistent)
darkriscv/trunk/.git/objects/19/538cb074fe0bfdd5bdb97e5d3c112a341841fd Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/92/da6f7abe14b284363179dc8a0f48481c6e5bda =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/92/da6f7abe14b284363179dc8a0f48481c6e5bda =================================================================== --- darkriscv/trunk/.git/objects/92/da6f7abe14b284363179dc8a0f48481c6e5bda (revision 4) +++ darkriscv/trunk/.git/objects/92/da6f7abe14b284363179dc8a0f48481c6e5bda (nonexistent)
darkriscv/trunk/.git/objects/92/da6f7abe14b284363179dc8a0f48481c6e5bda Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/ff/750a4fb66a536aa432e15586e79a89360b6339 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/ff/750a4fb66a536aa432e15586e79a89360b6339 =================================================================== --- darkriscv/trunk/.git/objects/ff/750a4fb66a536aa432e15586e79a89360b6339 (revision 4) +++ darkriscv/trunk/.git/objects/ff/750a4fb66a536aa432e15586e79a89360b6339 (nonexistent)
darkriscv/trunk/.git/objects/ff/750a4fb66a536aa432e15586e79a89360b6339 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/ff/e01c7dcec8f8960dbcafc3b72691059276e608 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/ff/e01c7dcec8f8960dbcafc3b72691059276e608 =================================================================== --- darkriscv/trunk/.git/objects/ff/e01c7dcec8f8960dbcafc3b72691059276e608 (revision 4) +++ darkriscv/trunk/.git/objects/ff/e01c7dcec8f8960dbcafc3b72691059276e608 (nonexistent)
darkriscv/trunk/.git/objects/ff/e01c7dcec8f8960dbcafc3b72691059276e608 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/76/e1e336962b1a554fc84b44d9b04a91bf4d4757 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/76/e1e336962b1a554fc84b44d9b04a91bf4d4757 =================================================================== --- darkriscv/trunk/.git/objects/76/e1e336962b1a554fc84b44d9b04a91bf4d4757 (revision 4) +++ darkriscv/trunk/.git/objects/76/e1e336962b1a554fc84b44d9b04a91bf4d4757 (nonexistent)
darkriscv/trunk/.git/objects/76/e1e336962b1a554fc84b44d9b04a91bf4d4757 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/79/fbffb584b2ba4a1698c81edfd2a7b5c1189ba9 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/79/fbffb584b2ba4a1698c81edfd2a7b5c1189ba9 =================================================================== --- darkriscv/trunk/.git/objects/79/fbffb584b2ba4a1698c81edfd2a7b5c1189ba9 (revision 4) +++ darkriscv/trunk/.git/objects/79/fbffb584b2ba4a1698c81edfd2a7b5c1189ba9 (nonexistent)
darkriscv/trunk/.git/objects/79/fbffb584b2ba4a1698c81edfd2a7b5c1189ba9 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/79/00bce1ba9d7163e64660eea69e306295503c9c =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/79/00bce1ba9d7163e64660eea69e306295503c9c =================================================================== --- darkriscv/trunk/.git/objects/79/00bce1ba9d7163e64660eea69e306295503c9c (revision 4) +++ darkriscv/trunk/.git/objects/79/00bce1ba9d7163e64660eea69e306295503c9c (nonexistent)
darkriscv/trunk/.git/objects/79/00bce1ba9d7163e64660eea69e306295503c9c Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/98/b1594a7ae2b494be38ad84ada84777b294ab6f =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/98/b1594a7ae2b494be38ad84ada84777b294ab6f =================================================================== --- darkriscv/trunk/.git/objects/98/b1594a7ae2b494be38ad84ada84777b294ab6f (revision 4) +++ darkriscv/trunk/.git/objects/98/b1594a7ae2b494be38ad84ada84777b294ab6f (nonexistent)
darkriscv/trunk/.git/objects/98/b1594a7ae2b494be38ad84ada84777b294ab6f Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/b0/95ccbd81e403841ec8ddc34b8883e92b347905 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/b0/95ccbd81e403841ec8ddc34b8883e92b347905 =================================================================== --- darkriscv/trunk/.git/objects/b0/95ccbd81e403841ec8ddc34b8883e92b347905 (revision 4) +++ darkriscv/trunk/.git/objects/b0/95ccbd81e403841ec8ddc34b8883e92b347905 (nonexistent)
darkriscv/trunk/.git/objects/b0/95ccbd81e403841ec8ddc34b8883e92b347905 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/0c/4f38b1b218b9148cfb3527b38ee6c03c3ec551 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/0c/4f38b1b218b9148cfb3527b38ee6c03c3ec551 =================================================================== --- darkriscv/trunk/.git/objects/0c/4f38b1b218b9148cfb3527b38ee6c03c3ec551 (revision 4) +++ darkriscv/trunk/.git/objects/0c/4f38b1b218b9148cfb3527b38ee6c03c3ec551 (nonexistent)
darkriscv/trunk/.git/objects/0c/4f38b1b218b9148cfb3527b38ee6c03c3ec551 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/b2/78fe6b42f35df7a8bbfd785746853b7375c422 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/b2/78fe6b42f35df7a8bbfd785746853b7375c422 =================================================================== --- darkriscv/trunk/.git/objects/b2/78fe6b42f35df7a8bbfd785746853b7375c422 (revision 4) +++ darkriscv/trunk/.git/objects/b2/78fe6b42f35df7a8bbfd785746853b7375c422 (nonexistent)
darkriscv/trunk/.git/objects/b2/78fe6b42f35df7a8bbfd785746853b7375c422 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/d2/8b5d74a0713a9c0fd2598a9e70031decbf10b2 =================================================================== --- darkriscv/trunk/.git/objects/d2/8b5d74a0713a9c0fd2598a9e70031decbf10b2 (revision 4) +++ darkriscv/trunk/.git/objects/d2/8b5d74a0713a9c0fd2598a9e70031decbf10b2 (nonexistent) @@ -1,22 +0,0 @@ -xZmpTy~/qZǺ+!cEa$ 8NgiW]}8K^-bMLlca &3IHGi~Yyڤ%Scf:q1Ğ6DBRܻL?k=:9+o[{Mmyn}l({c|>oTMw*o(AԸ{u¼ޘDZ|_&[\pYV<x`+XV<x#D꫻R;OQJ+4bR]ULvzJ=ae-[\?DȮBrMߴM-~L=&W2K*5됩C-8%·G4Iz*e?-tION;u5Y3(wp:r >NIrV1$a9>5GHl-ucij.scw-[?4K}>SM4ڜW-YYSg -&6y?zf -yMo)vu?Ug\L+~\ɩqM -e+[)/eF!eE%E+;9K -M.MN}|ڼ5ȶL/qiZ/XJ˂]^g.sҴuj+٠Ö~R-a+xa^wrj#0C[F{_g4x-7*vu6Ite4+nuI}؋<7GWS1ymRt58el7 -rR 5fWuir5mnv߀\ຐ*:js\+'vŃo{&]4:f.vIO2ؿW?r77Nzm[pMEZ_oF<7]+k!C8 -#ۨ ;f u-Rg:E3 -Xgn -pMwl|z4'39uAqs5B&2)48Cn89' -lP72>x|~Gr&֣r^=134.eKa6]}͇1___zt9`~Q[2MP0Z48PfyI}u {]8!F1V!6v_V(Qv(-~]S.({K23wyCuN9?j|} yl#PJYX~hN53=YƳs`svqSi+9yP] s?i߂5C&ҽڟ]'1#ý,m ~Ü:ͮV8@[:]lG.} `/g=&TpE؀Ju>C栖oی7/`J1?|b:-n|m&b6{`/ ˅3 y 8{ZV:dLhƚ7 1?TA-sp_ʾb}C^s -P8C.gAċsY-k>{Ci ֳ,_*mC"^} 5ޜٗmL/@/Pz>ߩAsJü },&mv<|D.r^-sg|y Ƽoy^W>Y{ߖДo~3?V~NWb{u+GOmW]>h{Yo=S||7_{?ٳi~א~_x& -1+ZL55=S~ԑ9D$6Hh v|$:t='"h"݉XFtĝT-IEE{Cx{<+"NS]HVH]~$[3q'&Rx -,3IiJ7nicX:-u:4m -3D'Amdnz3͕Qd" әsMеoR#tBES ,3Q(Q=L7<شHoK'miQ~2zJԈ:HB45ԋBm3u칶x{tNON8#İ]PC Ib"V[,zc Ѕ~ Nw{d)uRd4 :ͣl6;Ɏ$NG8x/ "#=I}swnzqΛxJK(@7fC -x ?>ǽ#7x+?>^)|<r?lO7!|~̀4 >C1< KXoӀ=_^޷?d8Oc|5Xw8a̕ {_y@=Ӱ/ot},Oe?˯? -^֡t&#áDo\ mD" +%`:SDO3):ˤ+uRG|JP8܅K"8:{fqtL&Q2#HI%=[x><4^VeyND:bl6Ճe1oTj#ld cFW+SH Kx,?j}GvW'݅jtA;ݠ#Qb |ۛ@Q{O*2/?=%O'r 7wq`0K>Cfk|t`H}.^1"j" h1. ,Ry:l \ No newline at end of file Index: darkriscv/trunk/.git/objects/0f/c075b282d914ec3ed376858d2b473150fde0e6 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/0f/c075b282d914ec3ed376858d2b473150fde0e6 =================================================================== --- darkriscv/trunk/.git/objects/0f/c075b282d914ec3ed376858d2b473150fde0e6 (revision 4) +++ darkriscv/trunk/.git/objects/0f/c075b282d914ec3ed376858d2b473150fde0e6 (nonexistent)
darkriscv/trunk/.git/objects/0f/c075b282d914ec3ed376858d2b473150fde0e6 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/f1/d279733ec139eff18ed9b2c15ee2209120bcc6 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/f1/d279733ec139eff18ed9b2c15ee2209120bcc6 =================================================================== --- darkriscv/trunk/.git/objects/f1/d279733ec139eff18ed9b2c15ee2209120bcc6 (revision 4) +++ darkriscv/trunk/.git/objects/f1/d279733ec139eff18ed9b2c15ee2209120bcc6 (nonexistent)
darkriscv/trunk/.git/objects/f1/d279733ec139eff18ed9b2c15ee2209120bcc6 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/2e/184f1e49397bb537a409fc61d1d1c89c46558f =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/2e/184f1e49397bb537a409fc61d1d1c89c46558f =================================================================== --- darkriscv/trunk/.git/objects/2e/184f1e49397bb537a409fc61d1d1c89c46558f (revision 4) +++ darkriscv/trunk/.git/objects/2e/184f1e49397bb537a409fc61d1d1c89c46558f (nonexistent)
darkriscv/trunk/.git/objects/2e/184f1e49397bb537a409fc61d1d1c89c46558f Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/6b/c0604e6cc39b4e33edac0cba1dec89a601791d =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/6b/c0604e6cc39b4e33edac0cba1dec89a601791d =================================================================== --- darkriscv/trunk/.git/objects/6b/c0604e6cc39b4e33edac0cba1dec89a601791d (revision 4) +++ darkriscv/trunk/.git/objects/6b/c0604e6cc39b4e33edac0cba1dec89a601791d (nonexistent)
darkriscv/trunk/.git/objects/6b/c0604e6cc39b4e33edac0cba1dec89a601791d Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/d5/c77b346c296032ab0327232d3d24936437b3bd =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/d5/c77b346c296032ab0327232d3d24936437b3bd =================================================================== --- darkriscv/trunk/.git/objects/d5/c77b346c296032ab0327232d3d24936437b3bd (revision 4) +++ darkriscv/trunk/.git/objects/d5/c77b346c296032ab0327232d3d24936437b3bd (nonexistent)
darkriscv/trunk/.git/objects/d5/c77b346c296032ab0327232d3d24936437b3bd Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/f4/b2743509297d639ea45c99da4fe9ad3619f66b =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/f4/b2743509297d639ea45c99da4fe9ad3619f66b =================================================================== --- darkriscv/trunk/.git/objects/f4/b2743509297d639ea45c99da4fe9ad3619f66b (revision 4) +++ darkriscv/trunk/.git/objects/f4/b2743509297d639ea45c99da4fe9ad3619f66b (nonexistent)
darkriscv/trunk/.git/objects/f4/b2743509297d639ea45c99da4fe9ad3619f66b Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/b8/3086f7f44d8fafa2059eef6219f371320a6ed6 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/b8/3086f7f44d8fafa2059eef6219f371320a6ed6 =================================================================== --- darkriscv/trunk/.git/objects/b8/3086f7f44d8fafa2059eef6219f371320a6ed6 (revision 4) +++ darkriscv/trunk/.git/objects/b8/3086f7f44d8fafa2059eef6219f371320a6ed6 (nonexistent)
darkriscv/trunk/.git/objects/b8/3086f7f44d8fafa2059eef6219f371320a6ed6 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/6d/57d632207447ea570bdefde9f75de2b9d274f9 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/6d/57d632207447ea570bdefde9f75de2b9d274f9 =================================================================== --- darkriscv/trunk/.git/objects/6d/57d632207447ea570bdefde9f75de2b9d274f9 (revision 4) +++ darkriscv/trunk/.git/objects/6d/57d632207447ea570bdefde9f75de2b9d274f9 (nonexistent)
darkriscv/trunk/.git/objects/6d/57d632207447ea570bdefde9f75de2b9d274f9 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/8c/3cea848cd465b2e9b4e6b274d6913bab02e4a1 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/8c/3cea848cd465b2e9b4e6b274d6913bab02e4a1 =================================================================== --- darkriscv/trunk/.git/objects/8c/3cea848cd465b2e9b4e6b274d6913bab02e4a1 (revision 4) +++ darkriscv/trunk/.git/objects/8c/3cea848cd465b2e9b4e6b274d6913bab02e4a1 (nonexistent)
darkriscv/trunk/.git/objects/8c/3cea848cd465b2e9b4e6b274d6913bab02e4a1 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/04/aa075c85cab4cf21751faa2f0266a234d490c7 =================================================================== --- darkriscv/trunk/.git/objects/04/aa075c85cab4cf21751faa2f0266a234d490c7 (revision 4) +++ darkriscv/trunk/.git/objects/04/aa075c85cab4cf21751faa2f0266a234d490c7 (nonexistent) @@ -1,2 +0,0 @@ -xmk0ܿUdHEZ6a+\*}ݗ>fק4IU N`Iq@r!3xT/LEIsDxLQ -AĥTY,D~pVFLX^p$;m#hfS#`L}>m;L;K~ 2Z~&j- up7 F4US* q_ \ No newline at end of file Index: darkriscv/trunk/.git/objects/42/73f429fe9561980ce9d821d4dfb1bda42dd6ba =================================================================== --- darkriscv/trunk/.git/objects/42/73f429fe9561980ce9d821d4dfb1bda42dd6ba (revision 4) +++ darkriscv/trunk/.git/objects/42/73f429fe9561980ce9d821d4dfb1bda42dd6ba (nonexistent) @@ -1,62 +0,0 @@ -x][wȖ:<;vI:,al`;䑡 /ϷJ@邑Kd9]_]vuxwO =p?=^9><0Nꕫq‚r㹼^q -wߖ?|2+0\~lv'ޢM|aU}nyǿ{ط9T;j["{ls+Svj^փ=B?^V[hÍv|<7l7XRMv=akfgE,Aȼ{ -P. -'B@,poD-}{6=;c )h7u'ت0Sy>=TVQ&͕9=-k }$eqz_p.a -SZ/&A%~on"G̬ &(m3> -|ً#~b=b1;u=ķ-kbo~ȵoq \{!h }kM>;[ƾv{ -SWf5_-pv_h6s -$Q2Fqs$'kG`vh[~,X2X,g= -Wʔ[+'\O&O~'6 -}HL[dgP+gV8#y3{.1=6-21vພ[s;8~c@H 8Kr43ǛJlhQ0P wdM -BXX:GVRq]y1=ɐwGROhNz=6|Z -ħs(bI+ hzR޲R'l賁5wrgp_h!9w{6:<$C#_NnЇ+s+ll3_k4۬ӌ.^lU^1!8Z ard6Ҟ2+ 7E!/Ew Ӏdɰ-{O'㻾\{ٴ₤^w Q x1Lp;؞NђCʌVP8 >h34oqg(!- S-y>U1.S#vn68wЂׁ"Q?v@o|u8; 9, - -?H94/m{ >ݭfh(۳ܚ/Uq)\|^)t%Şcl |o[gڨ5i -e %4i=IUs)1jvdl]2<w!?%^2$yTXS |o!tSov͎?|HٺLr4U&e&H}+z`eX7ֲBKpbiďs%մFVzf^3h$Z`L]+bR!48O_ոʔ߱CGbHܷ&sq6b}E'!Xwp8L/f y',6ppG5g.>ZB&0q rZd8,T1ve1̤ -ؒ~hvpQo?px~qJxFai>Vg S¢Eitfpsk!\wRRAIXڐOWpss.kPpWK],qak].z 5AZC(PF;"RY*%YCTԶ@׊tRPnӨW/9^LȷG2OXo,/~#w#E{TS-?i4[+`qSm[|X2`|bsl!__#J9DIyWZ%";؅+f9GNԕ|0C֧ڱ0#GSP&Զ^0^/Q_!(J_cSCu ׁZ,`"-{(,R/j!ݢ=)~+5qr[3PkRX~ikC۽s.&S b 3J Ba:P=AU Nsp oj>rnۄνQ 'xC na-3dx2y UO¡Cy}""odr>.&[gecGXdr\x(+Al;w.#Q}@Y_ݙ ]!…ܝf^K`蔔dQMITVUھyF -*Ys1劢K -zZ6\W!WveS -EU9U-h0\ Ǚ~]t"jꖋRcJWAdƇ.ldp>" {L //@xe8(ˤ2&q.fWDJfV7~Z)[_9zTr\_ԓ )tKMr4%z[Ї:1tF_#X,CP5KT]W(HE_jȞ%Nz NV"{%Y(A- -ɊBBAdw|F -U{ -oiRAs&1V[rE*6YݳdS=OiCެj5SXP*'z訮KX-wR;# -!xʅVJC"ˉ3G"*]ʜ'Z:**)F -Os1/ MYB))*X-pٮLKHҢ -XJ@Tƃб}0c/) -:qwF@때C?g~U*s췢jP%SumSWdi>r?do -d,죣X}k{1ҕsɜ -SV(ej>(Ј-昋 X)tȹ3"rh:$'= +jMĖXMX;34eD8( -B(8F8yn†McFXoWbF4ھ5(Bw+]0;<&?\ddmUjmi^yQJsMpr?WvS8hl06|ʡ XP)2"Э/Ѩ̋XRD#A헶8@_*(.Z$Vq ա_y*O'fGFћ]7šMV3}dlJ鿧Sa M$-8tW܀,,^ʻ?7+H1/HShՅRw2-ԕrR75:3Gk[+U)*CXnJz4mM0[BOQ -?Jf4K ``,1]2&RQ(lS 4IcR&Mj(cf<'AG/Q?-@w,YsN kpBp>ڌ"6gڕ>XRlC֎)ePoByJ§ -cekQhJfCPKCfjxoO1#"'ۗ6I`z.eT>ֲ(w]'&["E  -if̶,}LHh :$#ʦBp=-]mu < -SwUo|#e҃(cUEwnYaXEpWh8h%c1r^+jLٱD?Rx -L@(C^ͭ&I7g9hj34 c"Q]N&+_,*Sd^ -'zmC?z(i%66qO8͡Cvk&Z趦lF?5T%L 0u5irOiDiYzpD5&^JME(nC!ߤEBJ(}i]E\ -m\]A܆Co2EZpV<"Px4,MRBy-)#?rMJl4SG6-Fx3Qis{"<'4kj%'v|kw[x)dP$E;w2mʡE-*`ӥWqߋ`x)5*Q{jDJt+#v%*g ֊MuMeni&Jt -D~Ax)xdz񇣯G_OO)ٲi.DYOߛۿw>iIS󯟂ED71m -GWhܡa&,&mDw#Ô5 LQ_F1+4z%Dڅ^JWVیIh#.}mJ]N!'=}W2lş2$ AgŷDBe D#IBE=Ѐx>Ih.4"r3uy?PG}I -ϡ|WJe8Q)aYX]ΥYI~zq -GSF!* 9P j/=`?ڈі_~,_i$IHE;|ش1\tu{]G$wihlQ \ No newline at end of file Index: darkriscv/trunk/.git/objects/06/2cd52418ea3fb094e4a0956ee6bd80fbc96ae5 =================================================================== --- darkriscv/trunk/.git/objects/06/2cd52418ea3fb094e4a0956ee6bd80fbc96ae5 (revision 4) +++ darkriscv/trunk/.git/objects/06/2cd52418ea3fb094e4a0956ee6bd80fbc96ae5 (nonexistent) @@ -1,35 +0,0 @@ -xZ}pTUf4y'@4W";kם;vwB/IS#Cc9,0;NQ#USf%Xf1! }%ڿ=Cy6v2,1ESb]Vj]*s}5g#-UQUF0Z_VǬUU_8;Ghu45Ua7ΌilXˋ5樢ʌb@=YPu2)TǍE`oJcċ.N8X Q/}e WX@9\^_پPުW2<䪱KC\{{fQ5@s -?4nǜ̮A\`6N"OԄj69xZϏ82vJ7:vyw8zmƔl.Ek5˞C=k[ChSzsUzCΡ|Gv -0S"NiYF2&tK2ӊX#cV!-ϱ2ϋn.־;c/]K,af7\=":C_:kj -~6sF ~Lɣr翐W&jĚAU'v+ZA*{{l`rDUK?`'2YuyXn:*!(` Gv%eF5Z|${U5jE*W -:E{su!OGe8o kHqYj -ϩ8RBVg3gYjZ5f -#*ϿH5hZg!yQR]9/a59D+ϔ -6q\y[ȽQ8yyuo;S9Dٿߤ=y8rw ޥ\Am\|IGsGSqԎLy~BzYnNh/28z=}g -t -pLs/~Z_ʢ,T /z ->ĉu=);9;<Ÿ,,SzѩKfGN48GkfĎn |LG@maƢ L!czƌݧEkWIazM*}#˩>iZ%7\Am"hߚ3W!y -LDQJgEUºJ&_Is i̚7z@g1D/);.?Okە]}H}5>wϯaR[/cgC}h 0X#my -@624yxm;YM'<שOL>[W[?ؽ .Urd*/=IXs:F}`sp^rjn|0?G4btcnp#v㚊=cNoY_WSQ̌| -zu(׳L:l6ԝ8NfqWAS3Bn1;[|;}{RQwy} 8[Zr>n̦AwϽ9s'r PM y/e}:sߘP 5:bR_tg_w:{噏Rӌ:|\<.%)}qW 7c~Vg` + -O>8ѧtqyt%~P>M&Nm0_LI߇ ?{Pa~G,׶Mt7"܉4 ̧$F,KoC}bZ.658(!ܭLũ)X$B~c-g'NdR=z<ݷsUf1j<ԗZXvј6/;iy}?\V|V.v;~vJ \#HD{[ : {(r3:!p:7s.¡ȅm@$Bɣ6fMoRc]a-y]9wëxj6^<϶*;{<+۷16]ie3ˠ{ǾRaQ?>[GW`SRnN!ʗ4n~A<~)}y܋CtoƞV82NopT.3r:;@Ɯ2)Ӿ9*!sFocݵ,GZvCc._S}A8<͆|ļ7W߰}}?k_zY$*1W~X;yj<ک__r}V/玻> -yЇv5w;4Yo>HeT'&gKvv^3e=3W\ߑ{11m>r%YT[j[wIԜ5~nQ5!˿w.$Ԭ)[]CSDкXG.;Ǚ{dG4EY SͩѨh=X GMXJO`< r|%mnm -5=BmHJox]<MwAGv=d)C\9$ÉP3*;fϲFOVf.i*!RI6[ɝD8'֮g -5E#-H27w*o;VUmZc;b1E[V';uzqR/-ߖX-PxT#uzeye^j]Vo/hS0U -^hm8mNW<Oct0o H™m&#Sq}C(;>[a܈'"wPLDF[Uq80Ito&A)Je[WKDconz4ca#F<NbHl[[ʊvH^^b޻-XCKxh]Ad HP^R9-B9d;)LhR>µ C18xk,\׆l;N ~OcRbp<p83o=>reiv$ۛ^ };OO;7z7tXI -z w9cp M";gh.(?(ydCXyEe`;׬+Tg#y^ж(OHܬm zuO[EGc.'^yxovݓ Ʌ蓄ky$3 B?9?}Љc -:9ӌ"^ DBЅhIb~ - [[h6cDX -&Tcd z[ӅхШɐjEv*ҞŽKMB{:IP%]~^RQT*֖XnE(T ?fr}HPKc'M?N$ ]'=ؓ#}}]mvђ=^1A0FNd9-~? /=^W S9HMo&Dv?`\?ad Lr -h.oM7r@?7M ݘx},  -ڇpX<jr^$ -82%Sa FM2ڔ`Gg^0 -+Y=UVQQF($`5e4DoV;Ve-h,UO"T5DRI֚lDZXshyPp( -֞GoxhKxz0nǂ1 aB
darkriscv/trunk/.git/objects/eb/926d30c92b1f410b46eac4090eec98b7d73f7c Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/62/803fc1e5cba0e4ce76b0da3f4bd76d0ea7397e =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/62/803fc1e5cba0e4ce76b0da3f4bd76d0ea7397e =================================================================== --- darkriscv/trunk/.git/objects/62/803fc1e5cba0e4ce76b0da3f4bd76d0ea7397e (revision 4) +++ darkriscv/trunk/.git/objects/62/803fc1e5cba0e4ce76b0da3f4bd76d0ea7397e (nonexistent)
darkriscv/trunk/.git/objects/62/803fc1e5cba0e4ce76b0da3f4bd76d0ea7397e Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/cf/61059ab1947320f25f5f4d4ec0a4abbd1094dc =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/cf/61059ab1947320f25f5f4d4ec0a4abbd1094dc =================================================================== --- darkriscv/trunk/.git/objects/cf/61059ab1947320f25f5f4d4ec0a4abbd1094dc (revision 4) +++ darkriscv/trunk/.git/objects/cf/61059ab1947320f25f5f4d4ec0a4abbd1094dc (nonexistent)
darkriscv/trunk/.git/objects/cf/61059ab1947320f25f5f4d4ec0a4abbd1094dc Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/82/590b0440756653395f53e1b591d44fcc925a8e =================================================================== --- darkriscv/trunk/.git/objects/82/590b0440756653395f53e1b591d44fcc925a8e (revision 4) +++ darkriscv/trunk/.git/objects/82/590b0440756653395f53e1b591d44fcc925a8e (nonexistent) @@ -1,8 +0,0 @@ -xM0;*"{9czN?wu$Q\_%Z)X+/s(ECWiV|jfV=cVYKqK Ȃ9vIVNvnFr5Xg1b -e%_#S#ꮖhd<)BF!uN*s#f\7'i$,pᶺuRa! Ts -Pk P:W`& *!WزXG'8CC# 5׮@\o3AqB.L!wwH(wf/dJ8q!XH'?aNN"E<f@-DΟ)d8D|>"iX<: =+x1Ra<ⱺIN٫ v՛߃SNt >sl/-E٢wSm r㜧Qr4Oʨ)/Eǻ y|<Jc>sr֖TPN#wkn4Bd(OdEH -\v>W -JR%׭rWTEzRU%p@] /a@$ǵ w#:fj '[SWV`U\y0AMzhsNѤz/k \ No newline at end of file Index: darkriscv/trunk/.git/objects/64/f2f690c6512141d8bfd569cc36aec32c3cacaa =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/64/f2f690c6512141d8bfd569cc36aec32c3cacaa =================================================================== --- darkriscv/trunk/.git/objects/64/f2f690c6512141d8bfd569cc36aec32c3cacaa (revision 4) +++ darkriscv/trunk/.git/objects/64/f2f690c6512141d8bfd569cc36aec32c3cacaa (nonexistent)
darkriscv/trunk/.git/objects/64/f2f690c6512141d8bfd569cc36aec32c3cacaa Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/ef/8625652135afabb8c2424bf3fae6cdb86631fb =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/ef/8625652135afabb8c2424bf3fae6cdb86631fb =================================================================== --- darkriscv/trunk/.git/objects/ef/8625652135afabb8c2424bf3fae6cdb86631fb (revision 4) +++ darkriscv/trunk/.git/objects/ef/8625652135afabb8c2424bf3fae6cdb86631fb (nonexistent)
darkriscv/trunk/.git/objects/ef/8625652135afabb8c2424bf3fae6cdb86631fb Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/84/25b8e17a0e91727ec5437321a80ecd283c98fd =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/84/25b8e17a0e91727ec5437321a80ecd283c98fd =================================================================== --- darkriscv/trunk/.git/objects/84/25b8e17a0e91727ec5437321a80ecd283c98fd (revision 4) +++ darkriscv/trunk/.git/objects/84/25b8e17a0e91727ec5437321a80ecd283c98fd (nonexistent)
darkriscv/trunk/.git/objects/84/25b8e17a0e91727ec5437321a80ecd283c98fd Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/87/8bc324de54cbf2aad11eb33705651d29fc4de5 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/87/8bc324de54cbf2aad11eb33705651d29fc4de5 =================================================================== --- darkriscv/trunk/.git/objects/87/8bc324de54cbf2aad11eb33705651d29fc4de5 (revision 4) +++ darkriscv/trunk/.git/objects/87/8bc324de54cbf2aad11eb33705651d29fc4de5 (nonexistent)
darkriscv/trunk/.git/objects/87/8bc324de54cbf2aad11eb33705651d29fc4de5 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/c0/afb980477ccb1bdb3649adae7738c3a83191f2 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/c0/afb980477ccb1bdb3649adae7738c3a83191f2 =================================================================== --- darkriscv/trunk/.git/objects/c0/afb980477ccb1bdb3649adae7738c3a83191f2 (revision 4) +++ darkriscv/trunk/.git/objects/c0/afb980477ccb1bdb3649adae7738c3a83191f2 (nonexistent)
darkriscv/trunk/.git/objects/c0/afb980477ccb1bdb3649adae7738c3a83191f2 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/a3/7fb9cc548abb81bbd5b762ee3d3b4363c3200b =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/a3/7fb9cc548abb81bbd5b762ee3d3b4363c3200b =================================================================== --- darkriscv/trunk/.git/objects/a3/7fb9cc548abb81bbd5b762ee3d3b4363c3200b (revision 4) +++ darkriscv/trunk/.git/objects/a3/7fb9cc548abb81bbd5b762ee3d3b4363c3200b (nonexistent)
darkriscv/trunk/.git/objects/a3/7fb9cc548abb81bbd5b762ee3d3b4363c3200b Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/a3/bd9eca43fba2857519014094b2f4538e2980c7 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/a3/bd9eca43fba2857519014094b2f4538e2980c7 =================================================================== --- darkriscv/trunk/.git/objects/a3/bd9eca43fba2857519014094b2f4538e2980c7 (revision 4) +++ darkriscv/trunk/.git/objects/a3/bd9eca43fba2857519014094b2f4538e2980c7 (nonexistent)
darkriscv/trunk/.git/objects/a3/bd9eca43fba2857519014094b2f4538e2980c7 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/a3/228f53e520ea62e62865348d66c40e939fa7c2 =================================================================== --- darkriscv/trunk/.git/objects/a3/228f53e520ea62e62865348d66c40e939fa7c2 (revision 4) +++ darkriscv/trunk/.git/objects/a3/228f53e520ea62e62865348d66c40e939fa7c2 (nonexistent) @@ -1,65 +0,0 @@ -x]ێW+mu ~գuK[_s,$T%$k~6?CVq?/i{緷?~ϯe~ӷu[>>~,ܟoG<^|x>pLO}Q<7?=Ĉ~M_^EY5=Oeq >USǽkTSSMVLH͙ 1sۛjn57$須[l*5E4.Poa;ljo.j3u/IESŌz*QO?xe.n!}zًK'bMdJ.BAntmJ5C>b?=~:𗝴"~(tGKGо4 -k^p 62Pol_oi[cE8]f}`[*\tOn̰Ň˺!m;g9Hm6|.d+L08Dfi+%%Y rDʥ)ζE9 -3"Uu'A5FHZMb5_vN}xXݘ6C&PσHf5d吹K=dNsywɌc;ޚss.PɹR. +oo|y?1C65׻,(=^]SD޴o+;_d7=k&]h`j7,l[w\|@Ԍ o-~"૟q4 -𦍿st7b/?V:>{O[Y#2}'Sq n_ȶʙ_ms~IU:ۼ .G,- nj N.MW;i3ޖ_;rՒ3o/A0+y8x<@ -%ppI^sJ}C"lDe%p'/xniuJai+X'@r1AmH$NIWoe¿n -H -tx%PCdMI(we., S!\GYmwS㣤G M#Z}oS -B¸ŃQ@R6Pu53a -9Ncfɉ -!) -{0THb~ WM᳐V* -¯7Y7jvfA߄,P)N$gTuRc0Z@HDZBE*=~E= 9:'92E" q6e}zֶ Hj$hN-)ėC<:)ltώ -#1 -e@)`-Co$%ۂB%TT*:h%쉽S5~S|AL N# v7f۫ܪUQb͸D܀;n^(dnμ1e> 9jpϕ)F2"A`f{aHP,'8)EM1v -g {Њ8UWr\1Ȅ@&c#WǦ" g' #"USahTY|,BɀB'#‡6 PF]ç02AxPoSƷ5#[] D`_0p:Ag+&i@Go»+gc Y(D|l(2F"]6[g3Qr -J` -p,MX2TL"]9KӴ>kKd1ϤyCETЋ*o^W3bMZl@CmAcXÂKf59y%LfGԷ -t~QLLRMqQ{԰"DŽw= sKc0 >\BmNEmw`qr4K#\0*1TkTX ϽC̕@b|q Vb(aSAzn(6aYhٜ!0@oނ>=nz -Ko`E Eh!^̪p-/ }StMЈ?P}پ,s\ƌj%SsV>k@^9qJČ*1@qLߐ#&oK]꽊u%>6omHk|HH*P2f~e&I %r|;Sl[9#|5GaI>vX-yz $cl%=ĢKUϮ -Dnؤ -AsMnT!l u/o?Buh7\0*z,kl#@E՚Dj_k[FU -}~zX'(T;iAX 6{'~ -q2FykO$4w 8|R %bH&эC?QkvY{_HObk{V)Ax}WD'0-a 3&jBUm#烝ڪcFi(?#P1GcAUʦJJͦJZ+jժGVkв`e:riA -n3HCjRzn"ν]uGǓ!ܬD,[ xɔ[lHY([༯PaZQ "9èŝ"k'.ᔩ|"<&M - v1N B6:d3>Ύg 9 -vZP.# 2:L bxy>Õo :ݖQtLXI!urHILӬ]:5Z^LaF4 ]Ch-|c)J8O6|IHx{wX.ܴ8z(wII,82%(E `M}@c0D- -m-9H#zRz~zB07frUHe窳q1rUQN7*A٦}W| vX{ٵagUbA%0)q:+Q 'J qdʌQmz:/B͂d_I;lYeܒ95Bj"+1ܔݭ #O|d -FX>Z4H pk4m}r­زɃ 议 -b+Ibw n[\2B^LeD#2[Gd]QKos?\JȿP`,m 8XrrFI -^Zb}&D{ZQ*[A@ZdA5(ٸܩ5(oifXn/ -3g oV|SKDMnIa)%ZW'zt?ɩҐ4 %(~^"hہ8=geKE9}L [ߛ"YDp5p("dvVKpٮ1%q jTHHKPQ+ft02sd5 N@ck< -X)tPHe6h -c#RpޝI01@~mF%>4}V[-b10ô8b ٛ%=Z;QCMw'jh~D\xEƛ+kۖ.p#906i[@oN9Lx5UϘ'Dĺ}N 3QDM#PWi-RSTZ%3e -1${+[%D sڽWl[^##3gN뙌 OM) !za[n[J"}=@Z7L~l'LG'Z%vivFIX -v\5->ܑVDtϝlwH/6ɞOU:#}zX)A2Tشw3 MdLSO -EK3v:Lv0u b.Sgodqs7!ʲ];$ATFn8Kyrtt ;N ݴ dF| -ԃ56f8ru #`a6lkgjqẙ.h PӱM{Ov|̭߲['Єє ^B@~ p$9_zɛ!˴P8E -LGe?6; z6/.[P*B=V @~+'_trFڮ*SdBEz4J<6h>8 -{tzA!\\^1]xw6d&pGƞ_~"Go#-hGčIa~)r7FcLqO'?ˌoq%6 ٶ̼b@&nOUyOӌrypuX7`ӑAhԳ#nw8KkAC]o<*O#{Q -uLqLcɎq1̄fBZK %G*pr=ц\>;y(qld:;Au>>Q -mY ѓ}-pI;\%(n*[ ,G '‚Y{p%+R47ސrWy4;Tw(z@qgCTN37F~8v?l*⼜4eKzCMaB+6?`G+Xi52-WpmtVYT0KA'>W0p6M\Ns *U#'\o;I*pjP,i0`N}ndH|U&Onvd:HR^Z`Snӕ{u/=ٛaF(1(tmM\P/ҽP{0В.G@,$d97MABå(CQ)hr;{Nu6F'J}⁤]ua.<J8?tW8iHhpҒNp7fluF -&Í!`~ġh(6p܊1TeѷylP*!L\n 2cpk5 m.dP;0~Pg -;MN-{_ߦo?~;nKg-`. &r[^=j.'.PKab ";Fx,,'^lt9scXb۸xZ]=:Nƣa4sH "{ݶA]p0#1ꤎX_<`5:6wGH0k2Ѫ+J1z  U)wbcb{^,M:Iً8q37dSAr#qk$bo54n78cEk ek ѹi}gu_{0CAȈF}< ))(qpl8N*`6L/o@2Cw# V8ñN cΚ()kUMG $^&`$Q8#|$˩0R*WwK>=ȹcUL] -P\5tB HT?TrKq!QZNКLA4&WyAؓ7艹 RO46yNT;!(T -:]ⁱ\ibҬWtU5|~:0:"Og\?ɠHq/Q9[2Np8:Z` &fQKS$UelJmL] H@ 잉h S\Erq[p[rq0r':ϊda['k$@PTVĉ8pgRٮZm3N)'BE]1`d I1tm*rEЖn&7A *?"L$AN'z (Em| s 0A \GA?'bRx',zcPrīSl;+[;,_/1א?qV-CHz|"^ݧ K+cg h:TuL=. o-5e@Df@8{hĨpp(5l>d^: &OTnpDX5>Mīq0LxG%)[772{2yExTЌ$S./dYh<Lx!d@uL G8DVȑY['Z-q YDr= -A -&<*܇ Fw'cPk"^%8 g^FfDrNDv,XZ\ە -8834l~gQGbaʷߙHWFJonͱY,7IgbYܘݷA$upvllz΄c2T{ĉg-$+.(sgvqϘѫͬ_eف}*U/Jz!+;lMܐ ljb2pmzFfD: -Ŗg-E3^˜umvM .0%lޜmU݅T5U8m?&r~:U5V3 d p{VƠ`|5߾=0[ ]A rS7~'fq#-Ț24~82yJ^g5,k_] rVl|+ºdglYL+G葶NS'Hmy0t\ŕB3ōWW:y=\$SZALԨp\3{ݘ\mISΆZX@|oɵ>RrheP4Ɇgu}g?;ȚemfqhZ`yISC3Q7L -+xC{ OȓV^]Yܳk j^φM)q́[$*uaFFxS/+BexԚgkc jw=^\*%<;<Fתڶ@2@|M?ŇuRɐ! 3Gpbjo8)*ʼlJ!o-tkeXC$\=l;/B9{.žࠪzX=*Y7왳`Ԥ -?&8Fay=bI~D ][1`oG8V#mJF -%HcTf]d!@rm_) T([Mqzj78_ ȳ/~9Ъ -Z0S%Ma4 .Bia縏֗B40k "?Wf.įAwxAG%C/Tl#^t<UZ(qf3ƢEPvP< l&^b+|&>yf|&fSo3fIlj"Vfõѿf", wǤr-xee̛7\/Dc5(7I6WBT^W<[Uz*rp DÒ0#N`US#%MԞ=-M$# -(zGAc+5 ->!tiRkTHO`0PT*]xr -ʗYq &|+|>Ҍ3^ -n%s F` D`_Q+fĔu(bP v5v9a%.f.JzUNxܽ].ph-wuD VS혚Al ج\r}mqփE;$uálY+DHZqKgz HR -Ü؉0JĉevP&6J|DZG4w5->2/ٌwF*[>mUt&\D<%q^#QG+!$%łM)PzRs +C1OթJCHf$ZE5'@Hd%$O -! -ξ&7؜@^!Tk~azȘ4lR|o=ۯF)}b#{֞uG|mŊ~xy8j6 -VBTY<P?H7u \ No newline at end of file Index: darkriscv/trunk/.git/objects/3a/67245d8cb1f0c544362894965e055fa88342ae =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/3a/67245d8cb1f0c544362894965e055fa88342ae =================================================================== --- darkriscv/trunk/.git/objects/3a/67245d8cb1f0c544362894965e055fa88342ae (revision 4) +++ darkriscv/trunk/.git/objects/3a/67245d8cb1f0c544362894965e055fa88342ae (nonexistent)
darkriscv/trunk/.git/objects/3a/67245d8cb1f0c544362894965e055fa88342ae Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/c2/234c03d312c99828adffdcb42c65a898058d6a =================================================================== --- darkriscv/trunk/.git/objects/c2/234c03d312c99828adffdcb42c65a898058d6a (revision 4) +++ darkriscv/trunk/.git/objects/c2/234c03d312c99828adffdcb42c65a898058d6a (nonexistent) @@ -1,105 +0,0 @@ -x}ۮݶm:_~ ~045'˗ZN{1FA1T$FK/~z2ߞez|4=M/sY2}:/ut{ӗu>~_~?O}gf.;w_wC(8]WuuVzoco~^PuC4rP^wM3FKֱ.bW=;y?6<\M1̊QJΘܝ:4Rħz" pWMQ{_tR蚻4|2Ֆ~{7TԙWn Q/(=8)QkHَU3!s -I>AAktUdK;뷏f -Uݿ ? -?k($zfJ=b >t֢:%C#wخjCC`/ON_շ⣼b'kWkZ Vz2]}ԓ3ktYoӛt/÷çIµ^wڀ)uPv -h5^ܘ.q]lzݲ眿x -~fXvh]J~9/˕$%Tg^rSxADdo -N(-K.-yLUot U?}$ ˰%dIyYC)쭶eu]&B^AQ'u<)ەtҙWu/>J:,;] iqrݻH{vdK&,{O}LL+Ig&^}$$ٱt!i!LًUu}/dg}$,s jD|dm{[ [@y -KA1V@ z24BHGArBiL;BHnyPbz]/ MY38r>sb{rq/jMu`B-!@ E#y͵n@sW\T\C\Ӿ|~8suS ËrN,h yfPMތS;L[mĬv2&IbKeKIbra<|^:|UY:ds>|O_^?eryvIButTI0(gPֆ_& X"t8(v-A gY=vZ%mhQ1RnpGBB01yi;p{yW㴁&tmVȳ1RiX&g<L۟Nׯ<>/àE6=ʌɪB&guͪ=U2 -Y]B``]`R䂐8~0 ;$&~HX1^") yM0_sQȫ* ϟNݴ&C?Y -YWlMx~c -56w牣2pAuÒ]Û<&Azʪ1:;(eh5`D9mc1YVUSɊj(,,rMy03S0}6ioĤ&-}>iC煹ɢ%"t>Ůork[U^@țͿ)rr r4)(4 RbVQoeȟl -8O2M%Uȳ0>p108펻/?oZpBy ď):8`T *gqoA@}G:{ƋWݫ,(M 7ɸU t[%>3 -߁`G%\gLڑ-2QI() N>nE(i T8Ss= - ?!2Eo\>kG{/#qanzC;ia1aW2+Oy8~@5%;l9 i6jxlFĐ)Fnn LjY±g^?c*; l(){$<@DLؘ$ğDwF[eͣ1R' ^)\XMfÜF JeڟʡW 9 -8O8 -8RU(hQ%+?@9ߐxOQaam, -$i#qӭ$.VJ>Fdf-XS"5a%k&>F+H}I C%as*9hv(glSI=&&w( oڠjU뎫ҊK,2FCۓO!VJ+09;PB,rd@~k%f4WIh=A -%.N&;KrY~?u 0;W0.v{7Fz0.:0Aj=T̏Y3~dD~oR֫!2p;V"Ww[I&\ɼRplJj*@( -H7GeT~eq.aC{Ms* Q61DAݓx䎯qDIC(o2yxQi$.zxuK^h7or=D2D&y` (вWx̓M3R"iHc;EHBȤ[D(vS(xQxeE)@G?poK16@|(֗LGIUmc e 3qIR6ά -[a4cCTQ tGf#*nUdh,Ǧl3sʸ\;A\sR|V|QdC:!ے tTpӁqoD$"&ٰ5pq&LDvwT6:>]5&Jo|ZKS_)(Tv;f+ -cvORZ &7M:QZ.!A3OY^;*X\$o!7, -p9QMeqr[LoP!ZRBf-LټG҈?^- b -R%uIHOg )"lgޠ >GjƸ;x6gw*a [hXGrDeoG)]La%.U*"(vG\ԍ QCeE#)Z  -+3\=t?O Y:X QT,X.d!V,pvMNUgm1CŸU9G&Vx U|K_Y0v-6eo+LϢ'l?M<T;tޱh -++oD]oRQJ)Qwi|&΄18AZkbCT$D^[@Bk}4qU -h{MxEPTx YvH^\Lqmp1mQT<`:KB0X32L -tE!Lw5a#jKY*71Fo\٬!sJ-,8Qn%*Y[[BWEڡ#H=*Iv(aZx"R~/,Av1HI<+$“+t6“8Uu08FBC=H2?EKu9rQղ`fFTX<U$\TGՆ!!בmU*!"\Q.P:C_UCJCZ TpjCŽU켪{5Jϭ_/KcW>@6uB\zhBD9F퐁B5a4s9 --x@F#VZw&{@.6 -m2P;V@{Ŋ? a -h\Q}Йq]](x#= b 1X_K=$lcMXQ YsKxPX (~p[p>K!7CX;܎oBjGD[#TD$!sDkcX0g P׭/ 4^l@ ᔋ= ^DCri0ۈ,. 6Gw-Ol֍X{ɚ - yv\N PRfX2VAyg1kfj5|50]8tmdjtY_N -6hmFai λvEhF(EǤ;_%\Vl;X b45>=h=(oϢƈAҘEBP4:-F19 b|/n~cyoEI5٭X@ǝfDGܑ=k>Z[5٬ &n<8Bq-Blx+ -2v=W7 - %"r* -dT -a#Vt pW+Xṻ_KoA˚%x m"./* =8^5- -P"^ÏسMnz9=p5b{b _䭡Gd'=nC{QiSLg`#FMv6NE&dT6&G6&dqinA4B8dQ{):ksVU+XlC)7Oar #"J8[ vG!ͧgJk8cޣt}jUp\zGPƓp0IN/ϖO -öaH0-ǒ8!w| vȣ:"3#&}@Z2Ĭ 6e~.I}(_&QP飠TڕôJ-{gLuk`(N(Uu:YtM5 xƤ5tDQm -0mq8>5 xJ3c-\VmD[KX: -Ma%-zhg<eO_ g;/Y:R7+lԸΠNd6Fu[▧,E[ӻ 'v,w*Tv9֖Jt'FDu --E说Y];RteoW[w((o]o#8J~:/ԚV[MsY4x҂34fvF -5y5=@wmU'<0cوDGf s)} ; Wz p81k{5 pd޽wlw,K0 9^>djZ'hL$մy1Xd.ɼb\<$rVڶtz}cA5 -ko(q&&e;͉3uĘp@3,{>yw:OCDz^%HG<` ̵ؑ_:-Ux<\'|g<)GS:gth't&gVBɫ=a_ŅqmlW9~S: {E~YVE̡΄=7w׼,ք,^gS" Dl -y˥#igm!Gsr4dBgnLКڕStO)b(7Wͩև8q`4,\}K|t[ه :Zjtẓqv^m|zƂ|d !Iw. h4j8kq{#ޱg +͞L'zsh}9c&OWY"`\ܨYG&#DZKIL9ȁŝ[iOS]f?Q{CB_~ -Tf7{J` :.{1\>ͭ ! Aϖ<P?y%% ޹CaZn07j1n?G@D)Pd :JeDvL{#qJ(H|O"2a[ qXg4xS%ѐmL(zPd M߲ -~HA -=P6;j.J}0FZC Q -ȲǪmg(谮+S3 -skςIWC4~Af, -wYU$ONpFáh. k.PD p{_sW2~,/ĠW uo2EaO'lIBL mͭ -k՜<[aBȩCCD pl}];Fd"!Z_#2O7#p,i}O77}ǵ@d#qc -)hA2zÑ! ]т6ZE7.P@2"!]d\DKj&֓ 0").lNV Qd*BlȒE n.࣌3>G)M0\M8YϘFunąܴlMM&}QHވBրE-ǦR>T7(īd|ctZT]92^5ssaԫJFqލ2MF&z-QŒN"P9ToՑhFl؈mH>No|g43p'jBx߾ -EB:ٱ^&ݍ4 -7cݥ7å=〡b6'íQ~#dxVys$hb[xDST{uoOqɦ/qu?=E_b:d4AܨFwV_H;ա͊~6:Op*7W)ôJ -"mT6*53{KnzuP*Qc[Ge09v#Н*y~5{4ahlNeTwE{wHX3^ݲw d7Sv&+k\f` c7\dL>/&m1{sG -GbE/{ڞ2% -0?V)}уBT!~ wn$~ 8TX* Hpk} t02!!Ja4̛T[Ge($nA -*EÝRf4Z:vj~\ W4ΨI.2*~ɘ`Môf*gp[V[)𳠘n[2n - #[6P j{[{&:`/NF8"55J+G͛u .E -A#zJY ́#7tՓQp'F=i<M KU9l((ƲgNo)6!2YsfAxpl&ĘT[jESux}>^e~zƷ_>?6 -7Ghd&2E@j1-|%r -]B% d -0⯃P*L>eN -1Q8%"@eX2}^!}?|>} h]]_K|ՈFH -K(Pyfl$$G7\af/ 21vUC\F#ۀlHM,9ĉنB7揑Ts:_bOvHOCh]|KC*zRZqBV_rő\'N\vRztɆɁÏ͌WMTau6 -W/1Bp}x'Vո9ZGcBJCE#aqqKI/rqK]5n@bNLhTZd]1|r2ju`h.GRsʶӇPhv -4U},>$p2kiq2ڈ'GDh82|3b^mJ]c |H$!pЕABQޅ*2cTL8WX.oE8>ֲz5wt/EZNQuz@Bk3w^fU䤠["QOX&3[Q;PudK}pzN䜱p'Pz?qVN.c2O)Q~rs'x4䣐&WD|6L -r]Ȩ8quF'8 !勀0LxC*˥]g@ - g&hv^]:pQ)[ xw ^ -NFni%rAW{H\ -'nǭQB]|J{X+Q.7NJ|x ZQl:uFB^t '$W"+3aymE+Wڈvtʪ=qw$0^,{K9/dlVZ -Wxk3e<J)#VAQҪ8>~,I`?F?hrO?a'K3p&Eao>]zK -y9h٠vJWĺ>G_1<ڰdcK>ȆE64}Y׷$hG ?­֍~M*nKIl k?n>./@AxH6Znlt1j.N]4v~pΤA a&͙ xσ%iY /fHELQ_(Y{>2 "Y*Fއ2Ρrjp4b!_g~ݪ} <[}P -؄!u6n,n-i *t'({Yd3Y1E.<兀t&^B'2NI:WlZcntxLJwڠ_3ir5ߘ zg*Ҟ" %$dZ_~5xj*Ldr-vtV6>hrl/Rm3*VIFB-ɓ!ɉzD~]]`v&T. *ܺGeAMCuΙz=kꋥS#XRV{Ҿޒ~ކMݣG#͛29罻FgPg 6x_JM?k=,ܕul8}M6\}M"L-nʆ_fA8%vɼIY-`!ǧ_*PEf!v~ Gڊ'z%rg/ JI+&sV,G׻GKѴd>nH4: -I?j4%>uUϡbl,"] ̀2o6{ŢרW |`z=A:*"gw#C@B#Ba?MO̅ɀ)Y\JC JGj}xKܵ8BWŇP `ed~ 1z 2sQN8m7; (صۗz" YÀH3aX>_<W%5ϓ'9b-] L<@s6!eфQK 1J|/FQh¾x)G:h2 +H`3'xIzai4_N²`kjhm*^ה@H?v^ Y$2$FvW](VR݂j\ȌRlQDa$>O/){n8 wibfk;/ ~iKUYª -ޠuU6Iї]4 C|<*!!!]NC>I8O)\ԁZ%N$QU -QgZE(37nj -t}%c+@Gm0l*BLG /:D[dlQV[P9(ELHFb q36@&1=^eR|tFs*+ilqIhϓG*cMh@u6)zda9JsBB!$Ϭ:b\%Dd}vnrH\*vxT -0>X+.&PQ9jSsg?h#|+`:b*u7/u(1(>n3&M"{ FlՉe˗ng.`|0`9.$A"0{l ^&/LǬ1T#ژ> B?#4!8B??͟k?@؆U=)>u>d;t.C*9:mC]} 4TA-^Un̛Hg ,90dW*v4=:;'P~EI^:@8OqrAz͘E j⪲rG$&qAqඟ.~7Šqȅ/9 --1}gģ}d)/9pނ 1*Rƚ Q<%jBY3!B6nZɌ51jn&cTp9>| d@6;Nr]dv*yvJ=5tҎNV.;l84ן%D$cuiA;ڸ]Bsrye4Xq"qXP0D?^#?i?ßϣ .l;K+nL?/ؾ~T5uOcd$1\OgV/]TL~ĻӎG|_XŸs9kry[uUD7PG7bG;(vc@1<r!_
darkriscv/trunk/.git/objects/3c/94ffdce8a623699e8539bacc11f732a28fafdb Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/5a/a6ae6a2f81add54baa2309582406314ba44e7c =================================================================== --- darkriscv/trunk/.git/objects/5a/a6ae6a2f81add54baa2309582406314ba44e7c (revision 4) +++ darkriscv/trunk/.git/objects/5a/a6ae6a2f81add54baa2309582406314ba44e7c (nonexistent) @@ -1,29 +0,0 @@ -xpTujaBmKّY6Aq6&n ՒVY@vi -lHJS'5! iif3f&3Cf:L;nK:0LTq޳guY8{~ݽO T)1(~UњpC:Xkh^KG_v*2??WCuq/f"__kk`<\Oׇ =|+_w5U|37^~%"Qn8R{c-Gv_ }ϹKIc>^Cb9#Xzh_q~Qq -\Zk?g߻xU"i_sU˺oͻ;ø's>q |Mu0?Pv -Ap)mkeXSl dkKLu&t:mɤPo5b_d08R8j -|X ǂ`"ɏe'rͨ[MTg e -S.6{Ƈ&Nl `4o+⽣n弉O+[hML&c[Ď`,_ v'Dz͋ gRx3p ->h޳K:f,.9+yOrrA/_=U'ι8MZ`މ_~p|G\pkMhnb -N|aGc3SNnj'ι?WAw9&' -ىw:|[FL/tяB/ķ"1x7;Ah8Q'>ċN]N|Cz#'fQ;A/\1szt -UNϒCZ5t/Bw9瘹 06i1{-ow?AcNgo89&ZCvЩGrN|Q'~9'oSx's롻y=|rnǠ'+Yh~Il"&!ɵ${}=ug{ڽ}s1ˎ* Shz}ڽY^o߁vB_B9{}Չ5lo_+O*";kp+U\ziX^Y+:U?Y+t_Xwx9ck[]O;Dz釸kI}ݷrf){lzlGrmM箇oI۝}G=iart۹")k-HZH?ҭv|-Z.l6`+w:6qD{S6;#ھYnGo)sf+e);t55_+kXۮm樂D|B#喇tl67jæ>[OaFV_.lꏀu>;>Y"O5 ث+kB׼`mCV8XOV$_Y`o9]YB9cvGC# Mᰩ&ػտ! =4s`cteͨ>'OVdW0^'e^ >YF~X+煬~ؿOvs:'#?Uqςd_-o~'Ad8d2OV2d=>A#o``A'7OV&X__:dZ$['ϵ!'ϵPͬdY"+ ~Jva~? -? -`dπk^y!>Y`!_kW^տ -?)>YZ<|7\~-?|XG\c$>׉OVk$>xf~Z|`>o{|[~dkEy J#? dOOV, >Y`CV>|կ,d -~dS`?&dK;Y-`Q'_|C7OVFV=MOV -kG?At^rqw_ryYCV -M_9ǟcdguBV?_9w)Es''$>[z['ψOV3X灬>7yOJ>Y]`0A#?BV?F'g' -&>YS`Y3`o? wOV%ӛJK>ӅZSO#[lyEމ;6֫Fc`-t㠥k׼#O \ No newline at end of file Index: darkriscv/trunk/.git/objects/c3/ef2e093b0eae88b1cdc9b44aabb235681ed2e8 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/c3/ef2e093b0eae88b1cdc9b44aabb235681ed2e8 =================================================================== --- darkriscv/trunk/.git/objects/c3/ef2e093b0eae88b1cdc9b44aabb235681ed2e8 (revision 4) +++ darkriscv/trunk/.git/objects/c3/ef2e093b0eae88b1cdc9b44aabb235681ed2e8 (nonexistent)
darkriscv/trunk/.git/objects/c3/ef2e093b0eae88b1cdc9b44aabb235681ed2e8 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/1f/2da88293bad7a38fe14c9c1f8b94274fde49ed =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/1f/2da88293bad7a38fe14c9c1f8b94274fde49ed =================================================================== --- darkriscv/trunk/.git/objects/1f/2da88293bad7a38fe14c9c1f8b94274fde49ed (revision 4) +++ darkriscv/trunk/.git/objects/1f/2da88293bad7a38fe14c9c1f8b94274fde49ed (nonexistent)
darkriscv/trunk/.git/objects/1f/2da88293bad7a38fe14c9c1f8b94274fde49ed Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/1f/1a64fdb4641dc703632dd8772d2f06e0302e59 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/1f/1a64fdb4641dc703632dd8772d2f06e0302e59 =================================================================== --- darkriscv/trunk/.git/objects/1f/1a64fdb4641dc703632dd8772d2f06e0302e59 (revision 4) +++ darkriscv/trunk/.git/objects/1f/1a64fdb4641dc703632dd8772d2f06e0302e59 (nonexistent)
darkriscv/trunk/.git/objects/1f/1a64fdb4641dc703632dd8772d2f06e0302e59 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/e3/2564cda0b2abd0ac535aa4f6e99a1a88606e54 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/e3/2564cda0b2abd0ac535aa4f6e99a1a88606e54 =================================================================== --- darkriscv/trunk/.git/objects/e3/2564cda0b2abd0ac535aa4f6e99a1a88606e54 (revision 4) +++ darkriscv/trunk/.git/objects/e3/2564cda0b2abd0ac535aa4f6e99a1a88606e54 (nonexistent)
darkriscv/trunk/.git/objects/e3/2564cda0b2abd0ac535aa4f6e99a1a88606e54 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/e3/9bc7c9ef7536c47ffefaa846a1b3e61e82c477 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/e3/9bc7c9ef7536c47ffefaa846a1b3e61e82c477 =================================================================== --- darkriscv/trunk/.git/objects/e3/9bc7c9ef7536c47ffefaa846a1b3e61e82c477 (revision 4) +++ darkriscv/trunk/.git/objects/e3/9bc7c9ef7536c47ffefaa846a1b3e61e82c477 (nonexistent)
darkriscv/trunk/.git/objects/e3/9bc7c9ef7536c47ffefaa846a1b3e61e82c477 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/5e/e419172cabc06b1a2c4adfcd53061ac367b995 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/5e/e419172cabc06b1a2c4adfcd53061ac367b995 =================================================================== --- darkriscv/trunk/.git/objects/5e/e419172cabc06b1a2c4adfcd53061ac367b995 (revision 4) +++ darkriscv/trunk/.git/objects/5e/e419172cabc06b1a2c4adfcd53061ac367b995 (nonexistent)
darkriscv/trunk/.git/objects/5e/e419172cabc06b1a2c4adfcd53061ac367b995 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/9b/23eccfe3a2631c27058124f4564c1079492411 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/9b/23eccfe3a2631c27058124f4564c1079492411 =================================================================== --- darkriscv/trunk/.git/objects/9b/23eccfe3a2631c27058124f4564c1079492411 (revision 4) +++ darkriscv/trunk/.git/objects/9b/23eccfe3a2631c27058124f4564c1079492411 (nonexistent)
darkriscv/trunk/.git/objects/9b/23eccfe3a2631c27058124f4564c1079492411 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/7e/f11b6110aa3ff857e9aff336022aae6fb47c58 =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/7e/f11b6110aa3ff857e9aff336022aae6fb47c58 =================================================================== --- darkriscv/trunk/.git/objects/7e/f11b6110aa3ff857e9aff336022aae6fb47c58 (revision 4) +++ darkriscv/trunk/.git/objects/7e/f11b6110aa3ff857e9aff336022aae6fb47c58 (nonexistent)
darkriscv/trunk/.git/objects/7e/f11b6110aa3ff857e9aff336022aae6fb47c58 Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/objects/7f/fcc35b3d417910b898ef8ffceebbac88be999f =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: darkriscv/trunk/.git/objects/7f/fcc35b3d417910b898ef8ffceebbac88be999f =================================================================== --- darkriscv/trunk/.git/objects/7f/fcc35b3d417910b898ef8ffceebbac88be999f (revision 4) +++ darkriscv/trunk/.git/objects/7f/fcc35b3d417910b898ef8ffceebbac88be999f (nonexistent)
darkriscv/trunk/.git/objects/7f/fcc35b3d417910b898ef8ffceebbac88be999f Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: darkriscv/trunk/.git/FETCH_HEAD =================================================================== --- darkriscv/trunk/.git/FETCH_HEAD (revision 4) +++ darkriscv/trunk/.git/FETCH_HEAD (nonexistent) @@ -1 +0,0 @@ -8425b8e17a0e91727ec5437321a80ecd283c98fd branch 'master' of https://github.com/darklife/darkriscv Index: darkriscv/trunk/.git/info/exclude =================================================================== --- darkriscv/trunk/.git/info/exclude (revision 4) +++ darkriscv/trunk/.git/info/exclude (nonexistent) @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ Index: darkriscv/trunk/.git/refs/remotes/origin/HEAD =================================================================== --- darkriscv/trunk/.git/refs/remotes/origin/HEAD (revision 4) +++ darkriscv/trunk/.git/refs/remotes/origin/HEAD (nonexistent) @@ -1 +0,0 @@ -ref: refs/remotes/origin/master Index: darkriscv/trunk/.git/refs/remotes/origin/master =================================================================== --- darkriscv/trunk/.git/refs/remotes/origin/master (revision 4) +++ darkriscv/trunk/.git/refs/remotes/origin/master (nonexistent) @@ -1 +0,0 @@ -91d072ad9387d7e52fab9dcfd695b0f5dc683353 Index: darkriscv/trunk/.git/refs/heads/master =================================================================== --- darkriscv/trunk/.git/refs/heads/master (revision 4) +++ darkriscv/trunk/.git/refs/heads/master (nonexistent) @@ -1 +0,0 @@ -91d072ad9387d7e52fab9dcfd695b0f5dc683353

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.