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

Subversion Repositories openrisc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 531 to Rev 532
    Reverse comparison

Rev 531 → Rev 532

/openrisc/trunk/or1ksim/debug/debug-unit.c
136,11 → 136,13
 
runtime.cpu.stalled = state;
 
/* If we unstall, any changed NPC becomes valid again */
/* If we unstall, any changed NPC becomes valid again and we cannot be
halted. */
 
if (!runtime.cpu.stalled)
{
cpu_state.npc_not_valid = 0;
runtime.cpu.halted = 0;
}
} /* set_stall_state () */
 
/openrisc/trunk/or1ksim/configure.ac
28,7 → 28,7
 
# Use a full version number (x.y.z, possibly with "rcn" as a suffix) when
# preparing a release, otherwise use a the date version (yyyy-mm-dd).
AC_INIT([or1ksim], [0.5.1rc1], [openrisc@opencores.org])
AC_INIT([or1ksim], [2011-04-28], [openrisc@opencores.org])
AC_CONFIG_MACRO_DIR([m4])
 
# Generically use extensions such as _GNU_SOURCE if available.
/openrisc/trunk/or1ksim/ChangeLog
1,3 → 1,10
2011-04-28 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
* configure.ac: Updated version
* debug/debug-unit.c (set_stall_state): Clearing stall state also
clears halted state.
 
2011-04-08 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
246,6 → 253,10
* cpu/or32/generate.c (generate_body): Add except_handle call to all
generated illegal instruction cases.
 
2010-11-22 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* peripheral/eth.c (eth-reset): PF_PACKET renamed AF_PACKET.
 
2010-11-19 Julius Baxter <julius@opencores.org>
 
* peripheral/eth.c: Added new variable phy_addr to device struct and
/openrisc/trunk/or1ksim/testsuite/test-code-or1k/configure
1,6 → 1,6
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for or1ksim-testsuite 0.5.1rc1.
# Generated by GNU Autoconf 2.65 for or1ksim-testsuite 2011-04-28.
#
# Report bugs to <openrisc@opencores.org>.
#
701,8 → 701,8
# Identity of this package.
PACKAGE_NAME='or1ksim-testsuite'
PACKAGE_TARNAME='or1ksim-testsuite'
PACKAGE_VERSION='0.5.1rc1'
PACKAGE_STRING='or1ksim-testsuite 0.5.1rc1'
PACKAGE_VERSION='2011-04-28'
PACKAGE_STRING='or1ksim-testsuite 2011-04-28'
PACKAGE_BUGREPORT='openrisc@opencores.org'
PACKAGE_URL=''
 
1424,7 → 1424,7
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures or1ksim-testsuite 0.5.1rc1 to adapt to many kinds of systems.
\`configure' configures or1ksim-testsuite 2011-04-28 to adapt to many kinds of systems.
 
Usage: $0 [OPTION]... [VAR=VALUE]...
 
1495,7 → 1495,7
 
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of or1ksim-testsuite 0.5.1rc1:";;
short | recursive ) echo "Configuration of or1ksim-testsuite 2011-04-28:";;
esac
cat <<\_ACEOF
 
1600,7 → 1600,7
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
or1ksim-testsuite configure 0.5.1rc1
or1ksim-testsuite configure 2011-04-28
generated by GNU Autoconf 2.65
 
Copyright (C) 2009 Free Software Foundation, Inc.
2025,7 → 2025,7
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
 
It was created by or1ksim-testsuite $as_me 0.5.1rc1, which was
It was created by or1ksim-testsuite $as_me 2011-04-28, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
$ $0 $@
10315,7 → 10315,7
 
# Define the identity of the package.
PACKAGE='or1ksim-testsuite'
VERSION='0.5.1rc1'
VERSION='2011-04-28'
 
 
cat >>confdefs.h <<_ACEOF
11742,7 → 11742,7
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by or1ksim-testsuite $as_me 0.5.1rc1, which was
This file was extended by or1ksim-testsuite $as_me 2011-04-28, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
CONFIG_FILES = $CONFIG_FILES
11808,7 → 11808,7
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
or1ksim-testsuite config.status 0.5.1rc1
or1ksim-testsuite config.status 2011-04-28
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"
 
/openrisc/trunk/or1ksim/testsuite/test-code-or1k/configure.ac
23,7 → 23,7
# Configure script for the OpenRISC 1000 simulator test suite OR1K code
# directory. This uses a different tool chain, so has its own configuration
# script. Process this file with autoconf to produce a configure script.
AC_INIT([or1ksim-testsuite], [0.5.1rc1], [openrisc@opencores.org])
AC_INIT([or1ksim-testsuite], [2011-04-28], [openrisc@opencores.org])
AC_CONFIG_MACRO_DIR([m4])
 
AC_PROG_LIBTOOL
/openrisc/trunk/or1ksim/testsuite/test-code-or1k/ChangeLog
1,3 → 1,8
2011-04-28 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
* configure.ac: Updated version
 
2011-04-08 Jeremy Bennett <jeremy.bennett@embecosm.com>
 
* configure: Regenerated.
/openrisc/trunk/or1ksim/configure
1,7 → 1,7
#! /bin/sh
# From configure.ac Id: configure.ac 1507 2011-04-07 10:41:01Z jeremy using automake version AC_ACVERSION.
# From configure.ac Id: configure.ac 1511 2011-04-09 15:09:58Z jeremy using automake version AC_ACVERSION.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for or1ksim 0.5.1rc1.
# Generated by GNU Autoconf 2.65 for or1ksim 2011-04-28.
#
# Report bugs to <openrisc@opencores.org>.
#
722,8 → 722,8
# Identity of this package.
PACKAGE_NAME='or1ksim'
PACKAGE_TARNAME='or1ksim'
PACKAGE_VERSION='0.5.1rc1'
PACKAGE_STRING='or1ksim 0.5.1rc1'
PACKAGE_VERSION='2011-04-28'
PACKAGE_STRING='or1ksim 2011-04-28'
PACKAGE_BUGREPORT='openrisc@opencores.org'
PACKAGE_URL=''
 
1476,7 → 1476,7
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures or1ksim 0.5.1rc1 to adapt to many kinds of systems.
\`configure' configures or1ksim 2011-04-28 to adapt to many kinds of systems.
 
Usage: $0 [OPTION]... [VAR=VALUE]...
 
1547,7 → 1547,7
 
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of or1ksim 0.5.1rc1:";;
short | recursive ) echo "Configuration of or1ksim 2011-04-28:";;
esac
cat <<\_ACEOF
 
1654,7 → 1654,7
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
or1ksim configure 0.5.1rc1
or1ksim configure 2011-04-28
generated by GNU Autoconf 2.65
 
Copyright (C) 2009 Free Software Foundation, Inc.
2316,7 → 2316,7
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
 
It was created by or1ksim $as_me 0.5.1rc1, which was
It was created by or1ksim $as_me 2011-04-28, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
$ $0 $@
10717,7 → 10717,7
 
# Define the identity of the package.
PACKAGE='or1ksim'
VERSION='0.5.1rc1'
VERSION='2011-04-28'
 
 
cat >>confdefs.h <<_ACEOF
13736,7 → 13736,7
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by or1ksim $as_me 0.5.1rc1, which was
This file was extended by or1ksim $as_me 2011-04-28, which was
generated by GNU Autoconf 2.65. Invocation command line was
 
CONFIG_FILES = $CONFIG_FILES
13802,7 → 13802,7
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
or1ksim config.status 0.5.1rc1
or1ksim config.status 2011-04-28
configured by $0, generated by GNU Autoconf 2.65,
with options \\"\$ac_cs_config\\"
 

powered by: WebSVN 2.1.0

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