[PR #27] [CLOSED] Rtc #53

Open
opened 2026-01-31 21:29:33 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/27
Author: @Dahaka934
Created: 8/5/2015
Status: Closed

Base: masterHead: rtc


📝 Commits (10+)

📊 Changes

18 files changed (+3634 additions, -702 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 coroutine-win32.c (+47 -5)
📝 cpu-exec.c (+0 -6)
📝 disas.c (+4 -0)
hw/display/mac_display_template.h (+66 -0)
📝 hw/m68k/Makefile.objs (+1 -0)
hw/m68k/iwm.c (+148 -0)
hw/m68k/mac128k.c (+151 -0)
hw/m68k/mac128k.h (+12 -0)
hw/m68k/sy6522.c (+312 -0)
📝 target-m68k/cpu.c (+76 -5)
📝 target-m68k/cpu.h (+31 -8)
📝 target-m68k/helper.c (+658 -165)
📝 target-m68k/helper.h (+49 -7)
target-m68k/m68k-qreg.h (+0 -11)
📝 target-m68k/op_helper.c (+207 -31)
📝 target-m68k/qregs.def (+1 -0)
📝 target-m68k/translate.c (+1869 -464)

📄 Description

Add rtc


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/27 **Author:** [@Dahaka934](https://github.com/Dahaka934) **Created:** 8/5/2015 **Status:** ❌ Closed **Base:** `master` ← **Head:** `rtc` --- ### 📝 Commits (10+) - [`6b4e046`](https://github.com/qemu/qemu/commit/6b4e046cecfa4a843f18369fe9e5d759e9adffe4) Coroutines fix for win32 - [`e331970`](https://github.com/qemu/qemu/commit/e331970dfd4d5a8e8163109544a3d421994672c7) Added file for platform mac128k - [`0f558a6`](https://github.com/qemu/qemu/commit/0f558a6ee9d2a5bc7d85d2831752d194061b3e7f) Added kernel load - [`5e29f90`](https://github.com/qemu/qemu/commit/5e29f90c39d75d299b24bdb68fb2eb292753bfb7) Some mac128k cleanup - [`5e3d179`](https://github.com/qemu/qemu/commit/5e3d179044d363541a9005a708a463f65cce5f01) m68k: Add compatibility with 680x0 processors family - [`5edf446`](https://github.com/qemu/qemu/commit/5edf4465bff3c1de7a78ad0bb4e9c85857d8673e) Fixed cpu model for mac128k - [`dd65bfb`](https://github.com/qemu/qemu/commit/dd65bfb4da31473897895bba714552aaac96ae57) Fixed m68k instructions - [`01df576`](https://github.com/qemu/qemu/commit/01df576866394fef1b5e76cc7c15e81601a18285) Fixed mac startup - [`aacf2f5`](https://github.com/qemu/qemu/commit/aacf2f57d73016aca41fae1692874a05dcf17233) Added IWM - [`cd82955`](https://github.com/qemu/qemu/commit/cd82955ab15573becdf4ffb3e0f4902a6830bfa1) Fixed IWM IO mapping ### 📊 Changes **18 files changed** (+3634 additions, -702 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `coroutine-win32.c` (+47 -5) 📝 `cpu-exec.c` (+0 -6) 📝 `disas.c` (+4 -0) ➕ `hw/display/mac_display_template.h` (+66 -0) 📝 `hw/m68k/Makefile.objs` (+1 -0) ➕ `hw/m68k/iwm.c` (+148 -0) ➕ `hw/m68k/mac128k.c` (+151 -0) ➕ `hw/m68k/mac128k.h` (+12 -0) ➕ `hw/m68k/sy6522.c` (+312 -0) 📝 `target-m68k/cpu.c` (+76 -5) 📝 `target-m68k/cpu.h` (+31 -8) 📝 `target-m68k/helper.c` (+658 -165) 📝 `target-m68k/helper.h` (+49 -7) ➖ `target-m68k/m68k-qreg.h` (+0 -11) 📝 `target-m68k/op_helper.c` (+207 -31) 📝 `target-m68k/qregs.def` (+1 -0) 📝 `target-m68k/translate.c` (+1869 -464) </details> ### 📄 Description Add rtc --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:29:33 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#53