Compare commits

...

6 Commits

Author SHA1 Message Date
Peter Rutenbar
a9b2af09c0
Update README.md
Added a note of appreciation for issues/PRs
2023-03-29 10:49:13 -07:00
Peter Rutenbar
2b4768daee Update README.md 2017-04-17 11:52:13 -07:00
Peter Rutenbar
3fd03263fa Merge pull request #12 from mietek/master
Fix linking with Xcode 7
2016-09-04 02:02:17 -07:00
Miëtek Bak
578d274ab0 Fix linking with Xcode 7
Closes #11.
2015-11-28 22:03:13 +00:00
Miëtek Bak
bbb89edf8c Update .gitignore 2015-11-28 22:03:12 +00:00
Peter Rutenbar
70cf3734fb Update README.md 2015-09-13 20:16:46 -07:00
3 changed files with 16 additions and 4 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@
*.xcworkspace
xcuserdata
/gui/build
/debugger/debugger
/debugger/debugger.dSYM

View File

@ -9,12 +9,19 @@ Shoebill requires a Macintosh II, IIx or IIcx ROM, and a disk image with A/UX in
[Download the latest release], and then see the [getting started] wiki.
Also check out [screenshots].
__Update (April 9, 2015): Taking a break from regular development for a while. The last release was 0.0.4 in June 2014, and the latest commit implements ethernet and a new theoretically-very-accurate but totally untested FPU core with lots of suspected bugs. (But it seems to work better than the old FPU, anyways.) [The thread on emaculation.com] has tips on how to get ethernet working.__
__Update (March 29, 2023): About issues/pull requests__
####Supports
__I just wanted to say that I appreciate some folks are still using Shoebill and submitting issues and pull requests. I wish I could continue working on this project, but there's a likely conflict of interest, and so I've mostly avoided pushing changes. I apologize for being unable to address the many, many bugs in this repo. (Also for anyone unaware, [Qemu is now able] now to run A/UX 3.x on its emulated Quadra 800.)__
__Update (Sept 13, 2015): [Shoebill 0.0.5 is available]__
__This will probably be the last release. I won't be able to work on Shoebill going forward (by contractual obligation), so I wanted to race out one last release. Only an OS X binary is available, sorry, and it's very unpolished. But the SDL GUI should still build on linux/windows.__
#### Supports
* A/UX 1.1.1 through 3.1 (and 3.1.1 a little)
####Currently Implements
#### Currently Implements
* 68020 CPU (mostly)
* 68881 FPU (mostly)
* 68851 PMMU (just enough to boot A/UX)
@ -33,6 +40,7 @@ __Update (April 9, 2015): Taking a break from regular development for a while. T
[Download the latest release]:https://github.com/pruten/Shoebill/releases
[getting started]:https://github.com/pruten/Shoebill/wiki/Getting-Started
[screenshots]:https://github.com/pruten/Shoebill/wiki/Screenshots
[Shoebill 0.0.4 is available (Now with Windows & Linux ports)]:https://github.com/pruten/Shoebill/releases
[Shoebill 0.0.5 is available]:https://github.com/pruten/Shoebill/releases
[The thread on emaculation.com]:http://www.emaculation.com/forum/viewtopic.php?f=7&t=8288
[Qemu is now able]:https://virtuallyfun.com/2021/09/02/qemus-macintosh-quadra-in-alpha-usability-runs-a-ux/

View File

@ -283,6 +283,7 @@
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_LINK_OBJC_RUNTIME = NO;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
@ -322,6 +323,7 @@
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_LINK_OBJC_RUNTIME = NO;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;