mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
31 lines
441 B
ArmAsm
31 lines
441 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* arch/alpha/lib/dbg_current.S
|
|
* Contributed by Richard Henderson (rth@cygnus.com)
|
|
*
|
|
* Trap if we find current not correct.
|
|
*/
|
|
|
|
#include <asm/pal.h>
|
|
|
|
.text
|
|
.set noat
|
|
|
|
.globl _mcount
|
|
.ent _mcount
|
|
_mcount:
|
|
.frame $30, 0, $28, 0
|
|
.prologue 0
|
|
|
|
lda $0, -0x4000($30)
|
|
cmpult $8, $30, $1
|
|
cmpule $0, $30, $2
|
|
and $1, $2, $3
|
|
bne $3, 1f
|
|
|
|
call_pal PAL_bugchk
|
|
|
|
1: ret $31, ($28), 1
|
|
|
|
.end _mcount
|