/* ** asm-m68k/pcmcia.c -- Amiga Linux PCMCIA support ** most information was found by disassembling card.resource ** I'm still looking for an official doc ! ** ** Copyright 1997 by Alain Malek ** ** This file is subject to the terms and conditions of the GNU General Public ** License. See the file COPYING in the main directory of this archive ** for more details. ** ** Created: 12/10/97 by Alain Malek
*/
switch (voltage) { case PCMCIA_0V:
v = GAYLE_CFG_0V; break; case PCMCIA_5V:
v = GAYLE_CFG_5V; break; case PCMCIA_12V:
v = GAYLE_CFG_12V; break; default:
v = GAYLE_CFG_0V;
}
if (speed <= PCMCIA_SPEED_100NS)
s = GAYLE_CFG_100NS; elseif (speed <= PCMCIA_SPEED_150NS)
s = GAYLE_CFG_150NS; elseif (speed <= PCMCIA_SPEED_250NS)
s = GAYLE_CFG_250NS; else
s = GAYLE_CFG_720NS;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.