From: Guillermo J. Rozas Date: Mon, 25 Jun 1990 18:54:16 +0000 (+0000) Subject: Add fixnum bit-wise operations. X-Git-Tag: 20090517-FFI~11353 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=a49de16ae1ceaa888f09bfc9108ac1d3599103e0;p=mit-scheme.git Add fixnum bit-wise operations. --- diff --git a/v7/src/runtime/version.scm b/v7/src/runtime/version.scm index 9b293d58e..8106d122e 100644 --- a/v7/src/runtime/version.scm +++ b/v7/src/runtime/version.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.84 1990/06/22 01:04:48 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.85 1990/06/25 18:51:11 jinx Exp $ Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology @@ -45,7 +45,7 @@ MIT in each case. |# '())) (add-system! microcode-system) (add-event-receiver! event:after-restore snarf-microcode-version!) - (add-identification! "Runtime" 14 84)) + (add-identification! "Runtime" 14 85)) (define microcode-system) diff --git a/v7/src/sf/gconst.scm b/v7/src/sf/gconst.scm index e42015c82..156d06fb4 100644 --- a/v7/src/sf/gconst.scm +++ b/v7/src/sf/gconst.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/gconst.scm,v 4.6 1989/11/15 02:44:07 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/gconst.scm,v 4.7 1990/06/25 18:53:41 jinx Exp $ -Copyright (c) 1987, 1989 Massachusetts Institute of Technology +Copyright (c) 1987, 1989, 1990 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -94,12 +94,17 @@ MIT in each case. |# FIX:< FIX:= FIX:> + FIX:AND + FIX:ANDC FIX:DIVIDE FIX:GCD FIX:NEGATIVE? + FIX:NOT + FIX:OR FIX:POSITIVE? FIX:QUOTIENT FIX:REMAINDER + FIX:XOR FIX:ZERO? FLO:* FLO:+ diff --git a/v7/src/sf/make.scm b/v7/src/sf/make.scm index 77878b2a6..47ba32dfc 100644 --- a/v7/src/sf/make.scm +++ b/v7/src/sf/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/make.scm,v 4.13 1990/06/13 22:20:02 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/make.scm,v 4.14 1990/06/25 18:54:16 jinx Exp $ Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology @@ -39,4 +39,4 @@ MIT in each case. |# (package/system-loader "sf" '() 'QUERY) ((package/reference (find-package '(SCODE-OPTIMIZER)) 'USUAL-INTEGRATIONS/CACHE!)) -(add-system! (make-system "SF" 4 13 '())) \ No newline at end of file +(add-system! (make-system "SF" 4 14 '())) \ No newline at end of file diff --git a/v8/src/sf/make.scm b/v8/src/sf/make.scm index b1f994194..d869c2406 100644 --- a/v8/src/sf/make.scm +++ b/v8/src/sf/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/sf/make.scm,v 4.13 1990/06/13 22:20:02 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/sf/make.scm,v 4.14 1990/06/25 18:54:16 jinx Exp $ Copyright (c) 1988, 1989, 1990 Massachusetts Institute of Technology @@ -39,4 +39,4 @@ MIT in each case. |# (package/system-loader "sf" '() 'QUERY) ((package/reference (find-package '(SCODE-OPTIMIZER)) 'USUAL-INTEGRATIONS/CACHE!)) -(add-system! (make-system "SF" 4 13 '())) \ No newline at end of file +(add-system! (make-system "SF" 4 14 '())) \ No newline at end of file