summaryrefslogtreecommitdiff
path: root/coroutine/arm32/Context.S
blob: a44ba48778ce3c0497d7c893d06dc9127fd7f70a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
##
##  This file is part of the "Coroutine" project and released under the MIT License.
##
##  Created by Samuel Williams on 10/5/2018.
##  Copyright, 2018, by Samuel Williams. All rights reserved.
##

.text

.globl coroutine_transfer
coroutine_transfer:
	push {r4-r11,lr}
	str sp, [r0]
	ldr sp, [r1]
	pop {r4-r11,pc}