comparison lwasm/pseudo.c @ 396:62cb50c50976

Cosmetic updates to documentation; added warning pseudo op
author lost@l-w.ca
date Fri, 23 Jul 2010 17:08:57 -0600
parents c1d83336e1d1
children b30a77f0b685
comparison
equal deleted inserted replaced
395:54499b799779 396:62cb50c50976
948 { 948 {
949 lwasm_register_error(as, l, "User error: %s", *p); 949 lwasm_register_error(as, l, "User error: %s", *p);
950 skip_operand(p); 950 skip_operand(p);
951 } 951 }
952 952
953 PARSEFUNC(pseudo_parse_warning)
954 {
955 lwasm_register_warning(as, l, "User warning: %s", *p);
956 skip_operand(p);
957 }
958
953 PARSEFUNC(pseudo_parse_includebin) 959 PARSEFUNC(pseudo_parse_includebin)
954 { 960 {
955 char *fn, *p2; 961 char *fn, *p2;
956 int delim = 0; 962 int delim = 0;
957 FILE *fp; 963 FILE *fp;