* interp.c (trap): Implement time.
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 24 Jan 2001 13:17:01 +0000 (13:17 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 24 Jan 2001 13:17:01 +0000 (13:17 +0000)
sim/sh/ChangeLog
sim/sh/interp.c

index ae8773a..9839e8d 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
+
+       * interp.c (trap): Implement time.
+
 2000-10-24  Ben Elliston  <bje@redhat.com>
 
        * gencode.c (tab): Delimit strings with commas where applicable.
index 1844227..7f7ffab 100644 (file)
@@ -1102,6 +1102,9 @@ trap (i, regs, memory, maskl, maskw, endianw)
              strnswap (regs[5], len);
              break;
            }
+         case SYS_time:
+           regs[0] = get_now ();
+           break;
          default:
            abort ();
          }