2013-05-24 23:35:29 +00:00
|
|
|
#
|
|
|
|
/*
|
|
|
|
* Raspberry Pi support library for the ACK
|
|
|
|
* © 2013 David Given
|
|
|
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
|
|
|
* See the file 'Copying' in the root of the distribution for the full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libsysasm.h"
|
|
|
|
|
|
|
|
.sect .text
|
|
|
|
|
|
|
|
! Transforms a user address into a physical address.
|
|
|
|
|
2013-05-25 23:22:39 +00:00
|
|
|
.define _pi_user_to_phys
|
|
|
|
_pi_user_to_phys:
|
2013-05-24 23:35:29 +00:00
|
|
|
ld r0, 0 (sp)
|
|
|
|
add r0, gp
|
|
|
|
b lr
|
|
|
|
|