OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-m68k/] [unaligned.h] - Blame information for rev 1633

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1633 jcastillo
#ifndef __M68K_UNALIGNED_H
2
#define __M68K_UNALIGNED_H
3
 
4
/*
5
 * The m68k can do unaligned accesses itself.
6
 *
7
 * The strange macros are there to make sure these can't
8
 * be misused in a way that makes them not work on other
9
 * architectures where unaligned accesses aren't as simple.
10
 */
11
 
12
#define get_unaligned(ptr) (*(ptr))
13
 
14
#define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
15
 
16
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.