diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-04-22 17:46:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-04-22 17:46:07 +0000 |
commit | 15c1649391b66df7e721377daa248721ab3e58eb (patch) | |
tree | cbc9fca2a3287bf2882499101225fd5213f44ad4 /sim/tic80/configure.in | |
parent | 81f464815db9a9fc4209c7eb6eb7ea341b78b76e (diff) | |
download | gdb-15c1649391b66df7e721377daa248721ab3e58eb.zip gdb-15c1649391b66df7e721377daa248721ab3e58eb.tar.gz gdb-15c1649391b66df7e721377daa248721ab3e58eb.tar.bz2 |
TIc80 simulator checkpoint - runs 3 instructions - trap, addu, br.a.
Diffstat (limited to 'sim/tic80/configure.in')
-rw-r--r-- | sim/tic80/configure.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sim/tic80/configure.in b/sim/tic80/configure.in new file mode 100644 index 0000000..d927edf --- /dev/null +++ b/sim/tic80/configure.in @@ -0,0 +1,19 @@ +dnl Process this file with autoconf to produce a configure script. +sinclude(../common/aclocal.m4) +AC_PREREQ(2.5)dnl +AC_INIT(Makefile.in) + +SIM_AC_COMMON + +dnl Options available in this module +SIM_AC_OPTION_INLINE(0) +SIM_AC_OPTION_ENDIAN(LITTLE_ENDIAN) +SIM_AC_OPTION_HOSTENDIAN +SIM_AC_OPTION_WARNINGS +SIM_AC_OPTION_RESERVED_BITS(1) + +dnl For UNIX emulation +AC_CHECK_HEADERS(stdlib.h unistd.h string.h strings.h) + + +SIM_AC_OUTPUT |