blob: dad4a4d7e3f34e3058ea8a8d6bdc1fb1df531878 [file] [log] [blame]
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion int value
/// The 8-bit two's complement integer at address.
///
/// A Dart integer is truncated to 8 bits (as if by .toSigned(8)) before being
/// stored, and the 8-bit value is sign-extended when it is loaded.
///
/// @description Check that this getter/setter works as designed
/// @author sgrekhov@unipro.ru
import "dart:ffi";
import "package:ffi/ffi.dart";
import '../../../Utils/expect.dart';
void main() {
Pointer<Int8> p = calloc<Int8>();
try {
Expect.equals(0, p.value);
p.value = 300;
Expect.equals(300.toSigned(8), p.value);
p.value = -300;
Expect.equals(-300.toSigned(8), p.value);
} finally {
calloc.free(p);
}
}