mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
13 lines
283 B
C
13 lines
283 B
C
/*
|
|
* IO functions/macros.
|
|
*
|
|
* Copyright (C) 2007 Bahadir Balban
|
|
*/
|
|
#ifndef __LIBDEV_IO_H__
|
|
#define __LIBDEV_IO_H__
|
|
|
|
#define read(address) *((volatile unsigned int *)(address))
|
|
#define write(val, address) *((volatile unsigned int *)(address)) = val
|
|
|
|
#endif /* __LIBDEV_IO_H__ */
|