?? msp430x54x_mpy_3.c
字號:
//******************************************************************************
// MSP430F54x Demo - 16x16 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. Result is also stored as Result variable.
//
// ACLK = 32.768kHz, MCLK = SMCLK = default DCO
//
// MSP430F5438
// -----------------
// /|\| |
// | | |
// --|RST |
// | |
// | |
//
// M Smertneck / W. Goh
// Texas Instruments Inc.
// September 2008
// Built with CCE Version: 3.2.2 and IAR Embedded Workbench Version: 4.11B
//******************************************************************************
#include "msp430x54x.h"
signed int multiplier = 0x1234;
signed int operand = -6578;
signed long result; // global variable for multiply
// result
void main(void)
{
WDTCTL = WDTPW+WDTHOLD; // Stop WDT
MPYS = multiplier; // Load first operand -signed mult
OP2 = operand; // Load second operand
result = RESHI; // Load RESHI word result
result = (result<<16)|RESLO; // Shift RESHI left and concat with
// RESLO word result
__bis_SR_register(LPM4_bits); // Enter LPM4
__no_operation(); // For debugger
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -