Files
2025-02-28 16:39:03 +01:00

26 lines
678 B
C

/*
* ESP32S3 AES emulation
*
* Copyright (c) 2023 Espressif Systems (Shanghai) Co. Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 or
* (at your option) any later version.
*/
#include "qemu/osdep.h"
#include "hw/misc/esp32s3_aes.h"
static const TypeInfo esp32s3_aes_info = {
.name = TYPE_ESP32S3_AES,
.parent = TYPE_ESP_AES,
.instance_size = sizeof(ESP32S3AesState),
.class_size = sizeof(ESP32S3AesClass)
};
static void esp32s3_aes_register_types(void)
{
type_register_static(&esp32s3_aes_info);
}
type_init(esp32s3_aes_register_types)