Files
zig/lib/compiler/aro/backend/Assembly.zig
2025-12-23 22:15:08 -08:00

21 lines
491 B
Zig
Vendored

const std = @import("std");
const Io = std.Io;
const Allocator = std.mem.Allocator;
data: []const u8,
text: []const u8,
const Assembly = @This();
pub fn deinit(self: *const Assembly, gpa: Allocator) void {
gpa.free(self.data);
gpa.free(self.text);
}
pub fn writeToFile(self: Assembly, io: Io, file: Io.File) !void {
var file_writer = file.writer(io, &.{});
var buffers = [_][]const u8{ self.data, self.text };
try file_writer.interface.writeSplatAll(&buffers, 1);
}