llscmplt.s

来自「基于EP7312的MP3播放器源代码,包括MCU和PC端代码.」· S 代码 · 共 36 行

S
36
字号
//****************************************************************************//// LLSCMPLT.S - Routine to compare two signed 64-bit values to see if one is//              less than the other.//// Copyright (c) 1999,2000,2001 Cirrus Logic, Inc.////****************************************************************************#include "../../asmdefs.h"//****************************************************************************//// Read-only code area.////****************************************************************************    _TEXT_//****************************************************************************//// Compare two signed 64-bit values to see if one is less than the other.////****************************************************************************    _EXPORT_ _ll_scmplt_ll_scmplt _LABEL_    cmp     r1, r3    movlt   r0, _CONST_ 1    movgt   r0, _CONST_ 0    movne   pc, r14    cmp     r0, r2    movlo   r0, _CONST_ 1    movhs   r0, _CONST_ 0    mov     pc, r14    _END_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?