-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Open
Labels
Description
In the original VICE code, the received ethernet frame length is rounded up (https://sourceforge.net/p/vice-emu/code/HEAD/tree/trunk/vice/src/arch/shared/rawnetarch_win32.c line 522) so this assert can never happen:
mame/src/devices/machine/cs8900a.cpp
Line 531 in d8264ff
assert((len & 1) == 0); /* length has to be even! */ |
If, for some reason, the cs8900a needs an even sized frame it should probably round it up instead of asserting.