We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b6d2a commit 81d3fa8Copy full SHA for 81d3fa8
2 files changed
flex2.idea
@@ -28,3 +28,4 @@ create new file | newFactory={(path)=>{}}
28
29
check version in documentation tab (move code)
30
logo / have default as logo?
31
+describle what label is used for in asm
modules/formats/asm.js
@@ -17,7 +17,7 @@ export function asmToBin(buffer) {
17
// add starting label to ensure all sections are accounted for
18
const sections = (('__flex2__internal: \n' + asm)
19
.replace(/^\S/gm, (d) => `;;${d}`)
20
- .replace(/\n/gm, '') + ';')
+ .replace(/\s/gm, '') + ';')
21
.match(/;.*?:.*?;/g)
22
.map((d) => d.replace(/;/g, '').split(':'));
23
0 commit comments