diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-01-24 13:17:01 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-01-24 13:17:01 +0000 |
commit | 554064594b5fa51c31a4d57917b379233780d18f (patch) | |
tree | 511f4b10a76edabc33534d7fcd5b8b11bcb123de /sim/sh | |
parent | 296bc5686a6677a7401a9704b34bfcf2c0728a20 (diff) | |
download | gdb-554064594b5fa51c31a4d57917b379233780d18f.zip gdb-554064594b5fa51c31a4d57917b379233780d18f.tar.gz gdb-554064594b5fa51c31a4d57917b379233780d18f.tar.bz2 |
* interp.c (trap): Implement time.
Diffstat (limited to 'sim/sh')
-rw-r--r-- | sim/sh/ChangeLog | 4 | ||||
-rw-r--r-- | sim/sh/interp.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog index ae8773a..9839e8d 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -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. diff --git a/sim/sh/interp.c b/sim/sh/interp.c index 1844227..7f7ffab 100644 --- a/sim/sh/interp.c +++ b/sim/sh/interp.c @@ -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 (); } |