Commit ac4d057d authored by yann300's avatar yann300

linting

parent cd997ee6
...@@ -48,7 +48,7 @@ export const AssemblyItems = ({ registerEvent }) => { ...@@ -48,7 +48,7 @@ export const AssemblyItems = ({ registerEvent }) => {
} }
const indexChanged = (index: number) => { const indexChanged = (index: number) => {
console.log("index " + index) console.log('index ' + index)
if (index < 0) return if (index < 0) return
const codeView = asmItemsRef.current const codeView = asmItemsRef.current
......
...@@ -28,7 +28,7 @@ const reducedOpcode = (opCodes) => { ...@@ -28,7 +28,7 @@ const reducedOpcode = (opCodes) => {
const top = bottom + length const top = bottom + length
return { return {
index: opCodes.index - bottom, index: opCodes.index - bottom,
nextIndex:opCodes.nextIndex - bottom, nextIndex: opCodes.nextIndex - bottom,
display: opCodes.code.slice(bottom, top) display: opCodes.code.slice(bottom, top)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment