pio_assembler: typo fix (#538)

Change pleaced to placed
This commit is contained in:
Philip Howard 2021-10-04 19:11:03 +01:00 committed by GitHub
parent e6b8c7b64e
commit e12713d70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,7 +127,7 @@ void program::set_wrap(const yy::location &l) {
throw syntax_error(l, msg.str());
}
if (instructions.empty()) {
throw syntax_error(l, ".wrap cannot be pleaced before the first program instruction");
throw syntax_error(l, ".wrap cannot be placed before the first program instruction");
}
wrap = resolvable_int(l, instructions.size() - 1);
}