Properly send strings to the serial terminal

This commit is contained in:
copy 2015-01-09 05:25:48 +01:00
parent 1032ef3ef2
commit 0f433fa0a4

View file

@ -446,7 +446,7 @@ V86Starter.prototype.serial0_send = function(data)
{
for(var i = 0; i < data.length; i++)
{
this.serial_adapter.send_char(data.charCodeAt(i));
this.bus.send("serial0-input", data.charCodeAt(i));
}
};