HomeSort by: relevance | last modified time | path
    Searched defs:sram (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/x68k/include/
sram.h 1 /* $NetBSD: sram.h,v 1.4 2015/09/07 03:49:46 dholland Exp $ */
36 /* This is sram device driver. */
40 #define SRAM_SIZE 16*1024 /* Sram size is 16K bytes. */
45 unsigned char sram[SRAM_IO_SIZE]; member in struct:sram_io
  /src/sys/arch/x68k/dev/
xel.c 117 volatile u_int32_t *sram = (volatile u_int32_t *)IIOV(XEL_RAM_ADDR_HIGHER); local
128 b1 = sram[0];
129 b2 = sram[1];
135 if (b1 == sram[0] && b2 == sram[1]) {
141 sram[0] = 0x55555555;
142 sram[1] = 0xaaaaaaaa;
143 if (sram[0] != 0x55555555 || sram[1] != 0xaaaaaaaa) {
144 sram[0] = b1
    [all...]
  /src/sys/dev/isa/
if_iy.c 112 int sram, tx_size, rx_size; member in struct:iy_softc
353 sc->hard_vers, sc->sram/1024);
572 bus_space_write_1(iot, ioh, XMT_UPPER_LIMIT_REG, (sc->sram - 2) >>8);
729 if (end >= sc->sram) {
730 if ((sc->sram - last) <= I595_XMT_HDRLEN) {
1515 sc->sram = testing;
  /src/external/gpl3/gdb/dist/sim/avr/
interp.c 221 static byte sram[MAX_AVR_SRAM]; variable
321 return sram[addr] | (sram[addr + 1] << 8);
327 sram[addr] = w;
328 sram[addr + 1] = w >> 8;
350 sram[SREG] &= ~(SREG_S | SREG_V | SREG_N | SREG_Z);
352 sram[SREG] |= SREG_Z;
354 sram[SREG] |= SREG_N | SREG_S;
362 sram[SREG] &= ~(SREG_H | SREG_S | SREG_V | SREG_N | SREG_Z | SREG_C);
364 sram[SREG] |= SREG_N
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/avr/
interp.c 221 static byte sram[MAX_AVR_SRAM]; variable
321 return sram[addr] | (sram[addr + 1] << 8);
327 sram[addr] = w;
328 sram[addr + 1] = w >> 8;
350 sram[SREG] &= ~(SREG_S | SREG_V | SREG_N | SREG_Z);
352 sram[SREG] |= SREG_Z;
354 sram[SREG] |= SREG_N | SREG_S;
362 sram[SREG] &= ~(SREG_H | SREG_S | SREG_V | SREG_N | SREG_Z | SREG_C);
364 sram[SREG] |= SREG_N
    [all...]

Completed in 34 milliseconds