mirror of
https://github.com/ivanizag/izapple2.git
synced 2024-12-21 18:29:45 +00:00
Using sonarqube
This commit is contained in:
parent
fa17d4baa4
commit
eb34906fea
3
.gitignore
vendored
3
.gitignore
vendored
@ -12,3 +12,6 @@ frontend/*/snapshot.gif
|
||||
frontend/*/snapshot.png
|
||||
frontend/*/printer.out
|
||||
.DS_STORE
|
||||
.scannerwork
|
||||
coverage.out
|
||||
test.out
|
||||
|
@ -99,8 +99,8 @@ func (c *CardDisk2Sequencer) assign(a *Apple2, slot int) {
|
||||
Slot card pins to SN74LS259 mapping:
|
||||
slot_address[0] => latch_oe2_n
|
||||
*/
|
||||
register_output_enable_neg := (address & 1) != 0
|
||||
if !register_output_enable_neg {
|
||||
registerOutputEnableNeg := (address & 1) != 0
|
||||
if !registerOutputEnableNeg {
|
||||
return c.register
|
||||
} else {
|
||||
return 33 // Floating
|
||||
|
@ -22,7 +22,7 @@ func (p *protocolHttp) Open(urlParsed *url.URL) {
|
||||
}
|
||||
|
||||
func (p *protocolHttp) Close() {
|
||||
|
||||
// nothing to do
|
||||
}
|
||||
|
||||
func (p *protocolHttp) ReadAll() ([]uint8, ErrorCode) {
|
||||
|
Loading…
Reference in New Issue
Block a user