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

Subversion Repositories 8051

[/] [8051/] [trunk/] [asm/] [cast.c] - Rev 186

Compare with Previous | Blame | View Log

/*
 * Copyright (c) 1999-2001 Tony Givargis.  Permission to copy is granted
 * provided that this header remains intact.  This software is provided
 * with no warranties.
 *
 * Version : 2.9
 */
 
/*---------------------------------------------------------------------------*/
 
#include <reg51.h>
 
/*---------------------------------------------------------------------------*/
 
unsigned char cast(unsigned long l) {
 
    return (unsigned char)l;
}
 
/*---------------------------------------------------------------------------*/
 
void main() {
 
    unsigned long l = 0x01234567;
 
    P0 = cast(l >> 24);
    P1 = cast(l >> 16);
    P2 = cast(l >>  8);
    P0 = cast(l >>  0);
 
    while(1);
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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