mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Some folks might think: “you still use RCS”?!? And we will say, hey, at least we switched from SCCS to RCS back in … I think it was around 1994 ... at least we are keeping up! :-) :-) :-) Logs say that SCCS version 18 became RCS version 19 on 1994 March 18. RCS served us well. But now it is time to move on. And so we are switching to git. Calc releases produce a lot of file changes. In the 125 releases of calc since 1996, when I started managing calc releases, there have been 15473 file mods!
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
NAME
|
|
register - set or print a custom register value
|
|
|
|
SYNOPSIS
|
|
custom("register", regnum[, value])
|
|
|
|
TYPES
|
|
regnum int
|
|
value any, &any
|
|
|
|
return any
|
|
|
|
DESCRIPTION
|
|
This custom function reads or sets a value of a custom register.
|
|
A custom register can hold any calc value.
|
|
|
|
Without a value arg, the register value is return. With a value
|
|
arg, the register is set with that value and the previous value
|
|
is returned.
|
|
|
|
The number of custom registers is defined at compile time.
|
|
There will be at least 32 registers although there could be more
|
|
added in the future. It may be deterimed by:
|
|
|
|
custom("sysinfo", "REGNUM_MAX")
|
|
|
|
The custom registers are initialized to 0 by the internal
|
|
function libcalc_call_me_first() during calc startup.
|
|
|
|
This custom interface is intented to make it easier to interface
|
|
with special purpose hardware.
|
|
|
|
EXAMPLE
|
|
> custom("register", 3)
|
|
0
|
|
> custom("register", 3, 45)
|
|
0
|
|
> custom("register", 3)
|
|
45
|
|
|
|
> custom("register", 7, 2i),
|
|
> custom("register", 8, 3i),
|
|
> custom("register", 7) * custom("register", 8)
|
|
-6
|
|
|
|
LIMITS
|
|
calc must be built with ALLOW_CUSTOM= -DCUSTOM
|
|
calc must be executed with a -C arg.
|
|
The regnum numbe bee an integer >= 0 and < REGNUM_MAX where
|
|
REGNUM_MAX is a compile time constant that is >= 32.
|
|
|
|
LIBRARY
|
|
none
|
|
|
|
SEE ALSO
|
|
custom
|
|
|
|
## Copyright (C) 2007 Landon Curt Noll
|
|
##
|
|
## Calc is open software; you can redistribute it and/or modify it under
|
|
## the terms of the version 2.1 of the GNU Lesser General Public License
|
|
## as published by the Free Software Foundation.
|
|
##
|
|
## Calc is distributed in the hope that it will be useful, but WITHOUT
|
|
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
|
## Public License for more details.
|
|
##
|
|
## A copy of version 2.1 of the GNU Lesser General Public License is
|
|
## distributed with calc under the filename COPYING-LGPL. You should have
|
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
##
|
|
## Under source code control: 2005/02/04 22:39:50
|
|
## File existed as early as: 2005
|
|
##
|
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|