/* * divsi3.c * * Wrapper for ROM divsi3 routine, a 32-bit signed divide: r0r1 /= r2r3 * * The contents of this file are subject to the Mozilla Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * The Original Code is Librcx code, released February 9, 1999. * * The Initial Developer of the Original Code is Kekoa Proudfoot. * Portions created by Kekoa Proudfoot are Copyright (C) 1999 * Kekoa Proudfoot. All Rights Reserved. * * Contributor(s): Kekoa Proudfoot */ __asm__ ( ".section .text\n\t" ".global ___divsi3\n" "___divsi3:\n\t" "push r4\n\t" "push r5\n\t" "push r6\n\t" "mov.w r1,r6\n\t" "mov.w r0,r5\n\t" "mov.w r3,r4\n\t" "mov.w r2,r3\n\t" "jsr @@88\n\t" "mov.w r6,r1\n\t" "mov.w r5,r0\n\t" "pop r6\n\t" "pop r5\n\t" "pop r4\n\t" "rts" );