mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-30 00:01:02 +00:00
Conditionally print access to executable memory
This commit is contained in:
@@ -84,6 +84,17 @@ export class SettingsMenu extends React.Component<SettingsMenuProps, Settings> {
|
||||
<Label htmlFor="settings-buffer">Buffer stdout</Label>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-6">
|
||||
<Checkbox
|
||||
id="settings-exec"
|
||||
checked={this.state.execAccess}
|
||||
onCheckedChange={(checked: boolean) => {
|
||||
this.setState({ execAccess: checked });
|
||||
}}
|
||||
/>
|
||||
<Label htmlFor="settings-exec">Log exec Memory Access</Label>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-6">
|
||||
<Checkbox
|
||||
id="settings-persist"
|
||||
|
||||
Reference in New Issue
Block a user