📄 msp430xg46x_mpy_04.c
字号:
//******************************************************************************
// MSP430xG46x Demo - 8x8 Signed Multiply
//
// Description: Hardware multiplier is used to multiply two numbers.
// The calculation is automatically initiated after the second operand is
// loaded. Results are stored in RESLO, RESHI and SUMEXT = FFFF if result is
// negative, SUMEXT = 0 otherwise.
//
// ACLK = 32.768kHz, MCLK = SMCLK = default DCO
//
// MSP430xG461x
// -----------------
// /|\| |
// | | |
// --|RST |
// | |
// | |
//
// K. Quiring/ M. Mitchell
// Texas Instruments Inc.
// October 2006
// Built with IAR Embedded Workbench Version: 3.41A
//******************************************************************************
#include <msp430xG46x.h>
void main(void)
{
unsigned char value1,value2;
WDTCTL = WDTPW+WDTHOLD; // Stop WDT
FLL_CTL0 |= XCAP14PF; // Configure load caps
value1 = 0x12; // Assign operands for signed mult
value2 = 0x56;
// Sign-extend the values
if (value1 >=0x80)
MPYS = 0xFF00 | value1;
else
MPYS = value1;
if (value2 >=0x80)
OP2 = 0xFF00 | value2;
else
OP2 = value2;
_BIS_SR(LPM4_bits); // LPM4
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -