File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
LEGv8-Simulator.xcodeproj Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 545
545
"$(inherited)",
546
546
"@executable_path/../Frameworks",
547
547
);
548
- MACOSX_DEPLOYMENT_TARGET = 13.0 ;
548
+ MACOSX_DEPLOYMENT_TARGET = 14.3 ;
549
549
MARKETING_VERSION = 1.0;
550
550
PRODUCT_BUNDLE_IDENTIFIER = "AdinAck.LEGv8-Simulator";
551
551
PRODUCT_NAME = "$(TARGET_NAME)";
579
579
"$(inherited)",
580
580
"@executable_path/../Frameworks",
581
581
);
582
- MACOSX_DEPLOYMENT_TARGET = 13.0 ;
582
+ MACOSX_DEPLOYMENT_TARGET = 14.3 ;
583
583
MARKETING_VERSION = 1.0;
584
584
PRODUCT_BUNDLE_IDENTIFIER = "AdinAck.LEGv8-Simulator";
585
585
PRODUCT_NAME = "$(TARGET_NAME)";
Original file line number Diff line number Diff line change @@ -109,15 +109,15 @@ class Interpreter: ObservableObject {
109
109
}
110
110
111
111
private func parseLiteral( _ raw: String ) throws -> Int64 {
112
- if raw. contains ( " x " ) {
113
- if let literal = Int64 ( String ( raw [ raw. index ( after: raw. firstIndex ( of: " x " ) !) ... ] ) , radix: 16 ) {
114
- return literal
115
- }
116
- } else {
112
+ // if raw.contains("x") {
113
+ // if let literal = Int64(String(raw[raw.index(after: raw.firstIndex(of: "x")!)...]), radix: 16) {
114
+ // return literal
115
+ // }
116
+ // } else {
117
117
if let literal = Int64 ( raw) {
118
118
return literal
119
119
}
120
- }
120
+ // }
121
121
122
122
throw AssemblerError . invalidLiteral ( raw)
123
123
}
Original file line number Diff line number Diff line change 8
8
import SwiftUI
9
9
10
10
struct AboutView : View {
11
- let version : String = " 1.3.2 (Release) "
11
+ let version : String = " 1.3.3 (Release) "
12
12
13
13
var body : some View {
14
14
HStack {
You can’t perform that action at this time.
0 commit comments