diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-02-15 21:25:36 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-02-15 21:25:36 -0800 |
commit | ebb8d34197bf7908fe78e2692615a41c03d676f6 (patch) | |
tree | 96909f547c8db68f1fc3942dc5c3d7e3b1a28c23 /runtime.S | |
parent | 3a446823ac7a81038464775d1f6f3fb7e76eeb03 (diff) |
Generate m68k_start_context at runtime so it can use the generated load_context and save_context
Diffstat (limited to 'runtime.S')
-rw-r--r-- | runtime.S | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -264,22 +264,3 @@ m68k_load_context: mov 80(%rsi), %eax /* current cycle count */ ret - .global m68k_start_context -m68k_start_context: - push %rbp - push %r12 - push %r13 - push %r14 - push %r15 - - call m68k_load_context - call *%rdi - call m68k_save_context - - pop %r15 - pop %r14 - pop %r13 - pop %r12 - pop %rbp - - ret |