https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a15b89716891c56c0abc22905f5dd120a610e3a4 authored by ffxbld on 15 August 2012, 05:31:42 UTC
Added FENNEC_15_0b5_RELEASE FENNEC_15_0b5_BUILD1 tag(s) for changeset 760e45712f64. DONTBUILD CLOSED TREE a=release
Tip revision: a15b897
jswin64.asm
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at http://mozilla.org/MPL/2.0/.


.CODE

extern fmod:PROC

; This is a workaround for KB982107 (http://support.microsoft.com/kb/982107)
js_myfmod PROC FRAME
  .ENDPROLOG
  fnclex
  jmp  fmod
js_myfmod ENDP

END
back to top