summaryrefslogtreecommitdiffstats
path: root/cpukit/libpci/pci_access_mem.c
blob: edc74097b6b027aec80b978b88e267535b4c9ec7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*  PCI Access Library
 *  Registers-over-Memory Space - Generic Big/Little endian PCI bus definitions
 *
 *  COPYRIGHT (c) 2010 Cobham Gaisler AB.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#include <pci.h>

uint8_t pci_mem_ld8(uint8_t *adr)
{
	return *adr;
}

void pci_mem_st8(uint8_t *adr, uint8_t data)
{
	*adr = data;
}