1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-25 22:29:35 +00:00

Add missing personalty trait

This commit is contained in:
Matthias Endler 2018-10-30 22:07:34 +01:00
parent 508eb28c36
commit 4e16967165

View File

@ -27,6 +27,10 @@
#![no_std]
#![feature(start)]
#![feature(lang_items)]
#[lang = "eh_personality"]
extern "C" fn eh_personality() {}
extern crate mos6502;