comparison lwasm/symdump.c @ 490:1c3220ed87a8

Fix missing hex sigil in symbol dump
author William Astle <lost@l-w.ca>
date Fri, 03 May 2019 21:48:01 -0600
parents 7fbf3171ca15
children
comparison
equal deleted inserted replaced
489:52af0aa54fe5 490:1c3220ed87a8
100 as -> exportcheck = 0; 100 as -> exportcheck = 0;
101 } 101 }
102 102
103 if (lw_expr_istype(te, lw_expr_type_int)) 103 if (lw_expr_istype(te, lw_expr_type_int))
104 { 104 {
105 fprintf(of, " %04X\n", lw_expr_intval(te)); 105 fprintf(of, " $%04X\n", lw_expr_intval(te));
106 } 106 }
107 else 107 else
108 { 108 {
109 fprintf(of, " 0 ; <<incomplete>>\n"); 109 fprintf(of, " 0 ; <<incomplete>>\n");
110 } 110 }