Integer overflow: Difference between revisions

m
→‎{{header|PL/M}}: bold note as for some other languages that ignore overflow...
(Added PL/M)
m (→‎{{header|PL/M}}: bold note as for some other languages that ignore overflow...)
Line 1,962:
=={{header|PL/M}}==
{{works with|8080 PL/M Compiler}} ... under CP/M (or an emulator)<br>
8080 PL/M does not check for overflow, incrementing the largest integer values wraps around to 0 (numbers are insigned in 8080 PL/M) and the program <b>continues with wrong results</b>.
<lang pli>100H: /* SHOW INTEGER OVERFLOW */
 
3,021

edits