-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IMLAC: Type consistency warnings. #430
base: master
Are you sure you want to change the base?
Conversation
imlac/tests/ssv.simh
Outdated
@@ -1,9 +1,9 @@ | |||
# Attach to a server. If the remote port isn't telnet, append ;notelnet. | |||
attach tty 12345,connect=localhost:23 | |||
attach tty 12345,connect=192.168.50.248:23 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unintentional.
imlac/tests/ssv.simh
Outdated
# Configure a bootstrap ROM; some programs require this. | ||
set rom type=stty | ||
# Load SSV version 22. | ||
load -s ssv22.iml | ||
load -s %~p0/ssv22.iml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unintentional.
imlac/imlac_dp.c
Outdated
sim_activate_after (&dp_unit, 2); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this change.
imlac/imlac_cpu.c
Outdated
@@ -602,13 +605,13 @@ flag_check (uint16 flag) | |||
} | |||
|
|||
static uint16 | |||
irq_iot (uint16 insn, uint16 AC) | |||
irq_iot (uint16 insn, uint16 CUR_AC) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove these changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shadows AC -- is shadowing AC intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. The global AC should not be used inside this function.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm the original author of the Imlac simulator. I suggest some changes to be made to this pull request.
@larsbrinkhoff given the set of revisions to the original change, why not merely consider what's left of the original changes as a "suggestion" and submit a new PR which is exactly what you want, with comments referring to the original suggestion if you want. |
@markpizz I think updating this pull request should suffice. History rewriting and a force push will do this. |
I pushed the individual change sets so that it is clear what was done. Paul can squash the individual commits into one big comment when the PR is merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good now. Thanks!
@larsbrinkhoff: Fewer warnings declutters the build output. Appreciate you indulging my changes. |
Maintainers, @pkoning2 et al, I recommend squash merging these commits. |
No description provided.