代码搜索:byte
找到约 10,000 项符合「byte」的源代码
代码结果 10,000
www.eeworm.com/read/118816/14853765
dwo byte_align_be_ixp2400.dwo
# Developer Workbench Options File
# Format Version 31.60
#******** Do not edit this file ***********
# Begin Options byte_align_be_ixp2400
DEBUG_CONFIGURATION = SIMULATION
# Start History
www.eeworm.com/read/118816/14853766
dwp byte_align_be_ixp2400.dwp
# Developer Workbench Project File
# Format Version 31.60
#******** Do not edit this file ***********
# Begin Project byte_align_be_ixp2400
CHIP_TYPE = 7
DEBUG_ONLY = FALSE
PROJECT_PATH = C:\
www.eeworm.com/read/10077/181020
c uart_tx_1byte.c
#include
void main (void)
{
FUTXEN=0; // Disable UART Function
FUTXPEN=0; // Disable UART TX parity bit check function
FUTXM=0; // 1-byte
URBRC=0xD2; //110100
www.eeworm.com/read/10077/181021
c uart_rx_1byte.c
#include
unsigned char rx_buf,rx_state;
void main (void)
{
FURXEN=0; // Disable UART Function
FURXPEN=0; // Disable UART RX parity bit check function
FURXM=0;
www.eeworm.com/read/10077/181022
c uart_rx_1byte.c
#include
void main (void)
{
URRX=0x00; // clear URRX register
FURXEN=0; // Disable UART Function
FURXPEN=0; // Disable UART RX parity bit check function
FURXM
www.eeworm.com/read/10077/181023
c uart_tx_2byte.c
#include
void main (void)
{
FUTXEN=0; // Disable UART Function
FUTXPEN=1; // Enable UART TX parity bit check function
FUTXPS=1; // odd parity
// FUTXPS=0; // even
www.eeworm.com/read/10077/181024
c uart_rx_2byte.c
#include
//#include "uart_rx_2byte.h"
unsigned char rx_buf1,rx_buf2,rx_state;
bit rx_isr;
void main (void)
{
URRX=0x00;
FURXEN=0; // Disable UART Function
FURXPE
www.eeworm.com/read/233448/4669514
c cls_9byte2.c
/* Area: ffi_call, closure_call
Purpose: Check structure passing with different structure size.
Depending on the ABI. Darwin/AIX do double-word
alignment of the struct if the first element is a
www.eeworm.com/read/233448/4669528
c cls_1_1byte.c
/* Area: ffi_call, closure_call
Purpose: Check structure passing with different structure size.
Especially with small structures which may fit in one
register. Depending on the ABI.
Limitati
www.eeworm.com/read/233448/4669534
c cls_3byte1.c
/* Area: ffi_call, closure_call
Purpose: Check structure passing with different structure size.
Especially with small structures which may fit in one
register. Depending on the ABI. Check overl